Added highcharts event drillupall to interface ChartEvents (#18563)

* Update index.d.ts

Added method drillupall to ChartEvents

* added highcharts method drillupall in tests
This commit is contained in:
MartinVSA
2017-08-02 21:56:55 +02:00
committed by Sheetal Nandi
parent 4f735463f4
commit 928a4568a2
2 changed files with 6 additions and 0 deletions

View File

@@ -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.

View File

@@ -242,6 +242,7 @@ function test_ChartOptions() {
click: () => { },
drilldown: () => { },
drillup: () => { },
drillupall: () => { },
load: () => { },
redraw: () => { },
selection: () => { }