Add missing 'stops' property for AxisOptions (#13990)

http://api.highcharts.com/highcharts/yAxis.stops
This commit is contained in:
cbertiner
2017-01-17 22:24:55 -08:00
committed by Mohamed Hegazy
parent 09ca981828
commit 109fd152c0
+6
View File
@@ -805,6 +805,12 @@ declare namespace Highcharts {
* @since 1.2.0
*/
startOnTick?: boolean;
/**
* Solid gauge series only. Color stops for the solid gauge.
* Use this in cases where a linear gradient between a minColor and maxColor is not sufficient.
* The stops is an array of tuples, where the first item is a float between 0 and 1 assigning the relative position in the gradient, and the second item is the color.
*/
stops?: [number, string][];
/**
* The amount of ticks to draw on the axis. This opens up for aligning the ticks of multiple charts or panes within
* a chart. This option overrides the tickPixelInterval option.