UNPKG

@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.

21 lines 562 B
import { ComponentBase } from './ComponentBase'; import { Align } from '@nativescript-community/ui-canvas'; /** * Created by Philipp Jahoda on 17/09/16. */ export class Description extends ComponentBase { constructor() { super(); /** * the text used in the description */ this.text = 'Description Label'; /** * the alignment of the description text */ this.textAlign = Align.RIGHT; // default size this.textSize = 8; } } //# sourceMappingURL=Description.js.map