plotly.js: Add customdata field to PlotData and Margin padding (#39067)

This commit is contained in:
Derek Yu
2019-10-16 19:03:38 -04:00
committed by Andrew Branch
parent 13db742b5b
commit 6ec670c7d0

View File

@@ -406,6 +406,7 @@ export interface Margin {
b: number;
l: number;
r: number;
pad: number;
}
export type ModeBarDefaultButtons = 'lasso2d' | 'select2d' | 'sendDataToCloud' | 'autoScale2d' |
@@ -575,6 +576,7 @@ export interface PlotData {
rotation: number;
theta: Datum[];
r: Datum[];
customdata: Datum[];
}
/**