From 509a79d93dd99328eba88a211fc3d8196fb2f056 Mon Sep 17 00:00:00 2001 From: vargburz Date: Mon, 20 Nov 2023 19:25:43 +0300 Subject: [PATCH] remove unused options --- README.md | 17 ----------------- src/models/options.ts | 5 ----- src/types.ts | 4 ---- 3 files changed, 26 deletions(-) diff --git a/README.md b/README.md index c640e1a..f79fade 100755 --- a/README.md +++ b/README.md @@ -64,23 +64,6 @@ margin = { ['red', 'blue', 'green'] ``` -- `timeInterval`: interval in minutes (max value = 60) affecting grid and x-axis ticks. - -- `tickFormat`: config to control the axes ticks format. -```js -{ - xAxis: string; // x-axis time format (see [d3-time-format](https://github.com/d3/d3-time-format#locale_format) } - xTickOrientation: TickOrientation; // horizontal, diagonal or vertical orientation -} -``` -for example: -```js -{ - xAxis: '%Y-%m-%d %H:%M', - xTickOrientation: TickOrientation.DIAGONAL -} -``` - - `labelFormat`: labels for axes. ``` { diff --git a/src/models/options.ts b/src/models/options.ts index 1f414f3..791a5df 100644 --- a/src/models/options.ts +++ b/src/models/options.ts @@ -90,11 +90,6 @@ export const CORE_DEFAULT_OPTIONS: Options = { crosshair: DEFAULT_CROSSHAIR_OPTIONS, renderLegend: true, margin: DEFAULT_MARGIN, - // remove options below - renderTicksfromTimestamps: false, - timeInterval: { - timeFormat: TimeFormat.MINUTE - }, eventsCallbacks: {}, } diff --git a/src/types.ts b/src/types.ts index 94c69f2..ba6356b 100644 --- a/src/types.ts +++ b/src/types.ts @@ -34,10 +34,6 @@ export type Options = { axis?: AxesOptions; grid?: GridOptions; crosshair?: CrosshairOptions; - timeInterval?: { - timeFormat?: TimeFormat; - count?: number; - }; zoomEvents?: ZoomEvents; renderTicksfromTimestamps?: boolean; renderLegend?: boolean;