mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
40 lines
1.0 KiB
TypeScript
40 lines
1.0 KiB
TypeScript
// Type definitions for plotly.js
|
|
// Project: https://plot.ly/javascript/
|
|
// Definitions by: Martin Duparc <https://github.com/martinduparc>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
interface PlotlyConfig {
|
|
staticPlot?: boolean,
|
|
editable?: boolean,
|
|
autosizable?: boolean,
|
|
fillFrame?: boolean,
|
|
frameMargins?: number,
|
|
scrollZoom?: boolean,
|
|
doubleClick?: string,
|
|
showTips?: boolean,
|
|
showLink?: boolean,
|
|
sendData?: boolean,
|
|
linkText?: string,
|
|
showSources?: boolean,
|
|
displayModeBar?: string|boolean,
|
|
modeBarButtonsToRemove?: any[],
|
|
modeBarButtonsToAdd?: any[],
|
|
modeBarButtons?: boolean,
|
|
displaylogo?: boolean,
|
|
plotGlPixelRatio?: number,
|
|
setBackground?: any,
|
|
topojsonURL?: string,
|
|
mapboxAccessToken?: string,
|
|
logging?: boolean
|
|
}
|
|
|
|
interface PlotlyStatic {
|
|
newPlot(divid:string | HTMLElement, data:any[], layout?:any, config?:PlotlyConfig):void;
|
|
}
|
|
|
|
declare module "plotly.js" {
|
|
export = plotly;
|
|
}
|
|
|
|
declare var plotly:PlotlyStatic;
|