123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /*!*
- *
- * Copyright (c) Highsoft AS. All rights reserved.
- *
- *!*/
- import * as globals from "../globals.src";
- import * as _Highcharts from "../highcharts.src";
- /**
- * Adds the module to the imported Highcharts namespace.
- *
- * @param highcharts
- * The imported Highcharts namespace to extend.
- */
- export function factory(highcharts: typeof Highcharts): void;
- declare module "../highcharts.src" {
- interface Chart {
- /**
- * Add a series to the chart as drilldown from a specific point in the
- * parent series. This method is used for async drilldown, when clicking
- * a point in a series should result in loading and displaying a more
- * high-resolution series. When not async, the setup is simpler using
- * the drilldown.series options structure.
- *
- * @param point
- * The point from which the drilldown will start.
- *
- * @param options
- * The series options for the new, detailed series.
- */
- addSeriesAsDrilldown(point: Point, options: SeriesOptionsType): void;
- /**
- * When the chart is drilled down to a child series, calling
- * `chart.drillUp()` will drill up to the parent series.
- */
- drillUp(): void;
- }
- interface SVGElement {
- /**
- * A general fadeIn method.
- *
- * @param animation
- * The animation options for the element fade.
- */
- fadeIn(animation?: (boolean|Partial<AnimationOptionsObject>)): void;
- }
- }
- export default factory;
- export let Highcharts: typeof _Highcharts;
|