From 42606ffa0af0e3a99813e32d1da0ca5ca16d36c6 Mon Sep 17 00:00:00 2001 From: Brandon Clayton <bclayton@usgs.gov> Date: Mon, 22 Jul 2024 10:01:48 -0600 Subject: [PATCH] simplify plot --- libs/plotly/plotly-layout.model.ts | 41 +----------------------------- 1 file changed, 1 insertion(+), 40 deletions(-) diff --git a/libs/plotly/plotly-layout.model.ts b/libs/plotly/plotly-layout.model.ts index 94b1dcd..23f2083 100644 --- a/libs/plotly/plotly-layout.model.ts +++ b/libs/plotly/plotly-layout.model.ts @@ -1,45 +1,6 @@ -import { - Color, - Datum, - DTickValue, - Layout, - LayoutAxis, - TypedArray, -} from 'plotly.js'; +import {Layout} from 'plotly.js'; export interface PlotlyLayout extends Partial<Layout> { /** Aspect ratio of plot */ aspectRatio?: string; - /** x-axis */ - xaxis?: Partial<PlotlyAxis>; - /** y-axis */ - yaxis?: Partial<PlotlyAxis>; -} - -/** - * Plotly axis - */ -export interface PlotlyAxis extends Partial<LayoutAxis> { - minor: Partial<PlotlyMinor>; -} - -/** - * Plotly minor axis type. - * - * https://plotly.com/javascript/reference/layout/xaxis/#layout-xaxis-minor - */ -export interface PlotlyMinor { - dtick: DTickValue; - gridcolor: Color; - griddash: string; - gridwidth: number; - nticks: number; - showgrid: boolean; - tick0: number | string; - tickcolor: Color; - ticklen: number; - tickmode: 'auto' | 'linear' | 'array'; - ticks: 'outside' | 'inside' | ''; - tickvals: Datum[] | Datum[][] | Datum[][][] | TypedArray; - tickwidth: number; } -- GitLab