Update highcharts/highcharts.d.ts

The documentation for the xAxis: http://api.highcharts.com/highcharts#xAxis

Suggests the same for the xAxis options - it is an object not an array.
This commit is contained in:
Steve Fenton
2013-02-15 10:01:23 +00:00
parent 1a45045db4
commit c0f43e1521
+1 -1
View File
@@ -960,7 +960,7 @@ interface HighchartsOptions {
subtitle?: HighchartsSubtitleOptions;
title?: HighchartsTitleOptions;
tooltip?: HighchartsTooltipOptions;
xAxis?: HighchartsAxisOptions[];
xAxis?: HighchartsAxisOptions;
yAxis?: HighchartsAxisOptions[];
}