mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-07-04 17:20:09 +00:00
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:
5
types/highcharts/index.d.ts
vendored
5
types/highcharts/index.d.ts
vendored
@@ -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.
|
||||
|
||||
@@ -242,6 +242,7 @@ function test_ChartOptions() {
|
||||
click: () => { },
|
||||
drilldown: () => { },
|
||||
drillup: () => { },
|
||||
drillupall: () => { },
|
||||
load: () => { },
|
||||
redraw: () => { },
|
||||
selection: () => { }
|
||||
|
||||
Reference in New Issue
Block a user