From a0a4d1a3fbe69c938370b4e8cd9742506c1e3c48 Mon Sep 17 00:00:00 2001 From: Peter Albert Date: Sun, 2 Aug 2015 14:55:29 +0200 Subject: [PATCH] Added missing semicolons --- amcharts/AmCharts.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/amcharts/AmCharts.d.ts b/amcharts/AmCharts.d.ts index 28b43ddd1..4a3820816 100644 --- a/amcharts/AmCharts.d.ts +++ b/amcharts/AmCharts.d.ts @@ -902,7 +902,7 @@ If you do not set properties such as dashLength, lineAlpha, lineColor, etc - val /** used when constructing a chart with a theme */ constructor(theme?: any); /** Specifies, if class names should be added to chart elements. */ - addClassNames: boolean + addClassNames: boolean; /** Array of Labels. Example of label object, with all possible properties: {"x": 20, "y": 20, "text": "this is label", "align": "left", "size": 12, "color": "#CC0000", "alpha": 1, "rotation": 0, "bold": true, "url": "http://www.amcharts.com"} */ allLabels: Label[]; @@ -919,7 +919,7 @@ If you do not set properties such as dashLength, lineAlpha, lineColor, etc - val /** Color of chart's border. You should set borderAlpha >0 in order border to be visible. We recommend setting border color directly on a chart's DIV instead of using this property. #000000 */ borderColor: string; /** This prefix is added to all class names which are added to all visual elements of a chart in case addClassNames is set to true. */ - classNamePrefix: string + classNamePrefix: string; /** Text color. #000000 */ color: string; /** Array of data objects, for example: [{country:"US", value:524},{country:"UK", value:624},{country:"Lithuania", value:824}]. You can have any number of fields and use any field names. In case of AmMap, data provider should be MapData object. */ @@ -1416,9 +1416,9 @@ If you do not set properties such as dashLength, lineAlpha, lineColor, etc - val zoomOutText: string; /** Adds a ChartCursor object to a chart */ - addChartCursor(cursor: ChartCursor) + addChartCursor(cursor: ChartCursor); /** Adds a ChartScrollbar to a chart */ - addChartScrollbar(scrollbar: ChartScrollbar) + addChartScrollbar(scrollbar: ChartScrollbar); /** Adds a TrendLine to a chart. You should call chart.validateNow() after this method is called in order the trend line to be visible. */ addTrendLine(trendLine: TrendLine);