From 6ec670c7d0220af69ba7dd67b386e3d23e00874b Mon Sep 17 00:00:00 2001 From: Derek Yu Date: Wed, 16 Oct 2019 19:03:38 -0400 Subject: [PATCH] plotly.js: Add customdata field to PlotData and Margin padding (#39067) --- types/plotly.js/index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/plotly.js/index.d.ts b/types/plotly.js/index.d.ts index 64ba7129b3..bd53dc930a 100644 --- a/types/plotly.js/index.d.ts +++ b/types/plotly.js/index.d.ts @@ -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[]; } /**