@nativescript-community/ui-chart
Version:
A powerful chart / graph plugin, supporting line, bar, pie, radar, bubble, and candlestick charts as well as scaling, panning and animations.
23 lines (22 loc) • 491 B
TypeScript
import { ComponentBase } from './ComponentBase';
/**
* Created by Philipp Jahoda on 17/09/16.
*/
export declare class Description extends ComponentBase {
/**
* the text used in the description
*/
text: string;
/**
* the custom position of the description text
*/
position: {
x: number;
y: number;
};
/**
* the alignment of the description text
*/
textAlign: globalAndroid.graphics.Paint.Align;
constructor();
}