[plotly.js] add histogram fields to PlotData

This commit is contained in:
Michelle Zheng 2018-10-26 09:47:43 -07:00
parent 5a33bbf12f
commit ddc3de730a

View File

@ -536,6 +536,12 @@ export interface PlotData {
ygap: number;
xgap: number;
transpose: boolean;
autobinx: boolean;
xbins: {
start: number | string;
end: number | string;
size: number | string;
};
}
/**