Skip to content
Snippets Groups Projects
Commit 35ccc01c authored by Clayton, Brandon Scott's avatar Clayton, Brandon Scott
Browse files

remove Nshmp plot data

parent 679aa04d
No related branches found
No related tags found
1 merge request!237remove Nshmp plot data
import {PlotData, PlotMarker, ScatterLine} from 'plotly.js'; import {PlotData} from 'plotly.js';
import {PlotlyConfig} from './plotly-config.model'; import {PlotlyConfig} from './plotly-config.model';
import {PlotlyLayout} from './plotly-layout.model'; import {PlotlyLayout} from './plotly-layout.model';
...@@ -8,7 +8,7 @@ import {PlotlyLayout} from './plotly-layout.model'; ...@@ -8,7 +8,7 @@ import {PlotlyLayout} from './plotly-layout.model';
*/ */
export interface PlotlyPlot { export interface PlotlyPlot {
/** Plot data */ /** Plot data */
data: Partial<NshmpPlotData>[]; data: Partial<PlotData>[];
/** Plot id */ /** Plot id */
id: string; id: string;
/** Plotly config */ /** Plotly config */
...@@ -27,22 +27,3 @@ export interface PlotlyPlot { ...@@ -27,22 +27,3 @@ export interface PlotlyPlot {
*/ */
panelBreakpoint?: number; panelBreakpoint?: number;
} }
export interface NshmpPlotData extends PlotData {
line: Partial<NshmpScatterLine>;
marker: Partial<NshmpPlotMarker>;
}
export interface NshmpScatterLine extends ScatterLine {
/** Width when line is selected */
widthSelected: number;
/** Line width when in mobile screen */
widthMobile: number;
}
export interface NshmpPlotMarker extends PlotMarker {
/** Size when line is selected */
sizeSelected: number;
/** Size when in mobile screen */
sizeMobile: number;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment