%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 14.207.165.8 / Your IP : 216.73.216.26 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/var/www/html/ppaobm/vendor/bower-asset/highcharts/modules/ |
Upload File : |
/*!*
*
* 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 Axis {
/**
* Highstock only. Set the compare mode on all series belonging to an Y
* axis after render time.
*
* @param compare
* The compare mode. Can be one of `null`, `"value"` or
* `"percent"`.
*
* @param redraw
* Whether to redraw the chart or to wait for a later call to
* Chart#redraw.
*/
setCompare(compare: string, redraw?: boolean): void;
/**
* (Highstock) Highstock only. Force data grouping on all the axis'
* series.
*
* @param dataGrouping
* A `dataGrouping` configuration. Use `false` to disable data
* grouping dynamically.
*
* @param redraw
* Whether to redraw the chart or wait for a later call to
* Chart#redraw.
*/
setDataGrouping(dataGrouping?: (boolean|PlotSeriesDataGroupingOptions), redraw?: boolean): void;
}
interface Series {
/**
* Highstock only. Set the compare mode of the series after render time.
* In most cases it is more useful running Axis#setCompare on the X axis
* to update all its series.
*
* @param compare
* Can be one of `null`, `"percent"` or `"value"`.
*/
setCompare(compare: string): void;
}
/**
* Factory function for creating new stock charts. Creates a new Chart
* object with different default options than the basic Chart.
*
* @param options
* The chart options structure as described in the options reference.
*
* @param callback
* A function to execute when the chart object is finished loading
* and rendering. In most cases the chart is built in one thread, but
* in Internet Explorer version 8 or less the chart is sometimes
* initialized before the document is ready, and in these cases the
* chart object will not be finished synchronously. As a consequence,
* code that relies on the newly built Chart object should always run
* in the callback. Defining a chart.events.load handler is
* equivalent.
*
* @return The chart object.
*/
function stockChart(options: Options, callback?: ChartCallbackFunction): Chart;
/**
* Factory function for creating new stock charts. Creates a new Chart
* object with different default options than the basic Chart.
*
* @param renderTo
* The DOM element to render to, or its id.
*
* @param options
* The chart options structure as described in the options reference.
*
* @param callback
* A function to execute when the chart object is finished loading
* and rendering. In most cases the chart is built in one thread, but
* in Internet Explorer version 8 or less the chart is sometimes
* initialized before the document is ready, and in these cases the
* chart object will not be finished synchronously. As a consequence,
* code that relies on the newly built Chart object should always run
* in the callback. Defining a chart.events.load handler is
* equivalent.
*
* @return The chart object.
*/
function stockChart(renderTo: (string|HTMLDOMElement), options: Options, callback?: ChartCallbackFunction): Chart;
/**
* When we have vertical scrollbar, rifles and arrow in buttons should be
* rotated. The same method is used in Navigator's handles, to rotate them.
*
* @param path
* Path to be rotated.
*
* @param vertical
* If vertical scrollbar, swap x-y values.
*/
function swapXY(path: Array<(number|string)>, vertical: boolean): Array<(number|string)>;
/**
* Returns the first break found where the x is larger then break.from and
* smaller then break.to.
*
* @param x
* The number which should be within a break.
*
* @param breaks
* The array of breaks to search within.
*
* @return Returns the first break found that matches, returns false if no
* break is found.
*/
function findBreakAt(x: number, breaks: any[]): (boolean|object);
}
export default factory;
export let Highcharts: typeof _Highcharts;