%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 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/11585/root/var/www/html/ppaobm/backend/web/assets/16c36a2e/modules/ |
Upload File : |
/*!* * * Copyright (c) Highsoft AS. All rights reserved. * *!*/ import * as globals from "../globals"; import * as _Highcharts from "../highcharts"; /** * 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" { interface Chart { /** * Returns true if the chart is in series boost mode. * * @param chart * the chart to check * * @return true if the chart is in series boost mode */ isChartSeriesBoosting(chart: Chart): boolean; } interface Series { /** * If implemented in the core, parts of this can probably be shared with * other similar methods in Highcharts. */ destroyGraphics(): void; /** * Enter boost mode and apply boost-specific properties. */ enterBoost(): void; /** * Exit from boost mode and restore non-boost properties. */ exitBoost(): void; /** * Return a full Point object based on the index. The boost module uses * stripped point objects for performance reasons. * * @param boostPoint * A stripped-down point object * * @return A Point object as per * http://api.highcharts.com/highcharts#Point */ getPoint(boostPoint: (object|Point)): object; } } export default factory; export let Highcharts: typeof _Highcharts;