diff --git a/libs/plotly/index.ts b/libs/plotly/index.ts index cd96c0e4b22208fe4063ebbfd2af10504826570f..198e48cce3a4a25e4d063c09236944b01f7be22f 100644 --- a/libs/plotly/index.ts +++ b/libs/plotly/index.ts @@ -1,6 +1,5 @@ /* Export Plotly package */ export * from './plotly-config.model'; export * from './plotly-layout.model'; -export * from './plotly-legend.model'; export * from './plotly-plot.model'; export * from './plotly-utils'; diff --git a/libs/plotly/plotly-legend.model.ts b/libs/plotly/plotly-legend.model.ts deleted file mode 100644 index 77dcfe8eaf6c818b75194049bbba411d75e9b6c0..0000000000000000000000000000000000000000 --- a/libs/plotly/plotly-legend.model.ts +++ /dev/null @@ -1,8 +0,0 @@ -import {Legend} from 'plotly.js'; - -export type LegendClick = 'toggle' | 'toggleothers' | false; - -export interface PlotlyLegend extends Partial<Legend> { - itemclick: LegendClick; - itemdoubleclick: LegendClick; -}