From 928a4568a26d035da496ee7205221e7d62a02ea3 Mon Sep 17 00:00:00 2001 From: MartinVSA Date: Wed, 2 Aug 2017 21:56:55 +0200 Subject: [PATCH] Added highcharts event drillupall to interface ChartEvents (#18563) * Update index.d.ts Added method drillupall to ChartEvents * added highcharts method drillupall in tests --- types/highcharts/index.d.ts | 5 +++++ types/highcharts/test/index.ts | 1 + 2 files changed, 6 insertions(+) diff --git a/types/highcharts/index.d.ts b/types/highcharts/index.d.ts index 914fb83f96..f8ae716c13 100644 --- a/types/highcharts/index.d.ts +++ b/types/highcharts/index.d.ts @@ -1455,6 +1455,11 @@ declare namespace Highcharts { * @since 3.0.8 */ drillup?(event: Event): void; + /** + * Fires after drilling up from all drilldown series. + * @since 4.2.4 + */ + drillupall?(event: Event): void; /** * Fires when the chart is finished loading. One parameter, event, is passed to the function. This contains common * event information based on jQuery or MooTools depending on which library is used as the base for Highcharts. diff --git a/types/highcharts/test/index.ts b/types/highcharts/test/index.ts index 5ddc56420c..a17ee094c2 100644 --- a/types/highcharts/test/index.ts +++ b/types/highcharts/test/index.ts @@ -242,6 +242,7 @@ function test_ChartOptions() { click: () => { }, drilldown: () => { }, drillup: () => { }, + drillupall: () => { }, load: () => { }, redraw: () => { }, selection: () => { }