From 109fd152c01ee624f89da2f74c8669f18c460867 Mon Sep 17 00:00:00 2001 From: cbertiner Date: Wed, 18 Jan 2017 07:24:55 +0100 Subject: [PATCH] Add missing 'stops' property for AxisOptions (#13990) http://api.highcharts.com/highcharts/yAxis.stops --- highcharts/index.d.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/highcharts/index.d.ts b/highcharts/index.d.ts index f0131bebe2..60a9fa15cb 100644 --- a/highcharts/index.d.ts +++ b/highcharts/index.d.ts @@ -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.