From f04429e01622ba8c359ad5afc59cd36a0a01bb4d Mon Sep 17 00:00:00 2001 From: Peter Albert Date: Sun, 2 Aug 2015 14:38:45 +0200 Subject: [PATCH] Added title class --- amcharts/AmCharts.d.ts | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/amcharts/AmCharts.d.ts b/amcharts/AmCharts.d.ts index b1fe9fea6..ed068b574 100644 --- a/amcharts/AmCharts.d.ts +++ b/amcharts/AmCharts.d.ts @@ -2423,4 +2423,25 @@ Your function should return string.*/ /** Removes event listener from chart object. */ removeListener(chart: AmChart, type: string, handler: any); } -} + + class Title { + /** @default 1 */ + alpha: number; + /** Specifies if the tile is bold or not. + @default false*/ + bold: boolean; + /** Text color of a title. */ + color: string; + /** Unique id of a Title. You don't need to set it, unless you want to. */ + id: string; + /** Text size */ + size: number; + /** Text of a label */ + text: string; + } + class ExportSettings { + enabled: boolean; + libs: Object; + menu: Object; + } +} \ No newline at end of file