%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";
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 AjaxSettings {
data: object;
dataType: ("json"|"octet"|"text"|"xml");
error: Function;
headers: object;
success: Function;
type: ("delete"|"get"|"post"|"update");
url: string;
}
interface Chart {
/**
* Export-data module required. Returns the current chart data as a CSV
* string.
*
* @param useLocalDecimalPoint
* Whether to use the local decimal point as detected from the
* browser. This makes it easier to export data to Excel in the
* same locale as the user is.
*
* @return CSV representation of the data
*/
getCSV(useLocalDecimalPoint: boolean): string;
/**
* Export-data module required. Returns a two-dimensional array
* containing the current chart data.
*
* @param multiLevelHeaders
* Use multilevel headers for the rows by default. Adds an extra
* row with top level headers. If a custom columnHeaderFormatter
* is defined, this can override the behavior.
*
* @return The current chart data
*/
getDataRows(multiLevelHeaders: boolean): Array<Array<(number|string)>>;
/**
* Export-data module required. Build a HTML table with the chart's
* current data.
*
* @param useLocalDecimalPoint
* Whether to use the local decimal point as detected from the
* browser. This makes it easier to export data to Excel in the
* same locale as the user is.
*
* @return HTML representation of the data.
*/
getTable(useLocalDecimalPoint: boolean): string;
/**
* Experimental function to send a chart's config to the Cloud for
* editing.
*
* Limitations
*
* - All functions (formatters and callbacks) are removed since they're
* not JSON.
*/
openInCloud(): void;
/**
* Export-data module required. View the data in a table below the
* chart.
*/
viewData(): void;
}
/**
* Perform an Ajax call.
*
* @param attr
* The Ajax settings to use.
*/
function ajax(attr: AjaxSettings): void;
}
export default factory;
export let Highcharts: typeof _Highcharts;