From 271bc260334467c8a79983d8af45b17d6bf61e3c Mon Sep 17 00:00:00 2001 From: Michael Adams <36059111+mtadams007@users.noreply.github.com> Date: Wed, 5 Feb 2020 11:50:29 -0500 Subject: [PATCH] [plotly.js] add domain to layout. (#42107) --- types/plotly.js/index.d.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/types/plotly.js/index.d.ts b/types/plotly.js/index.d.ts index 11d088350d..ef671c3109 100644 --- a/types/plotly.js/index.d.ts +++ b/types/plotly.js/index.d.ts @@ -645,6 +645,12 @@ export interface PlotData { theta: Datum[]; r: Datum[]; customdata: Datum[]; + domain: Partial<{ + rows: number; + columns: number; + x: number[]; + y: number[]; + }>; } /**