lib/models/plot-settings-plots.model.ts
Properties |
|
defaultPlotSetting |
defaultPlotSetting:
|
Type : NshmpPlotSettings
|
expanded |
expanded:
|
Default value : true
|
Type : boolean
|
Optional |
Whether the panel is expanded. |
plot |
plot:
|
Type : NshmpPlot
|
updatePlot |
updatePlot:
|
Type : function
|
import {NshmpPlot, NshmpPlotSettings} from './nshmp-plot.model';
export interface PlotSettingsPlots {
defaultPlotSetting: NshmpPlotSettings;
plot: NshmpPlot;
updatePlot: (plot: NshmpPlot) => void;
/**
* Whether the panel is expanded.
*
* @default true
*/
expanded?: boolean;
}