[plotly.js] add domain to layout. (#42107)

This commit is contained in:
Michael Adams 2020-02-05 11:50:29 -05:00 committed by GitHub
parent 8a75816499
commit 271bc26033
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -645,6 +645,12 @@ export interface PlotData {
theta: Datum[];
r: Datum[];
customdata: Datum[];
domain: Partial<{
rows: number;
columns: number;
x: number[];
y: number[];
}>;
}
/**