@record-evolution/widget-linechart 1.4.10 → 1.4.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,32 +0,0 @@
1
- export interface InputData {
2
- settings: Settings;
3
- dataseries: Dataseries[];
4
- }
5
- export interface Settings {
6
- title: string;
7
- subTitle: string;
8
- timeseries: boolean;
9
- xAxisLabel: string;
10
- yAxisLabel: string;
11
- columnLayout: boolean;
12
- }
13
- export interface Dataseries {
14
- label: string;
15
- type: string;
16
- chartName: string;
17
- showLine: boolean;
18
- radius: number;
19
- pointStyle: string;
20
- backgroundColor: string;
21
- borderColor: string;
22
- borderWidth: number;
23
- borderDash?: string;
24
- fill: boolean;
25
- data: Data[];
26
- }
27
- export interface Data {
28
- x: string;
29
- y: number;
30
- r: number;
31
- pivot: string;
32
- }
package/src/types.ts DELETED
@@ -1,34 +0,0 @@
1
- export interface InputData {
2
- settings: Settings,
3
- dataseries: Dataseries[]
4
- }
5
- export interface Settings {
6
- title: string
7
- subTitle: string
8
- timeseries: boolean
9
- xAxisLabel: string
10
- yAxisLabel: string
11
- columnLayout: boolean
12
- }
13
-
14
- export interface Dataseries {
15
- label: string
16
- type: string
17
- chartName: string
18
- showLine: boolean
19
- radius: number
20
- pointStyle: string
21
- backgroundColor: string
22
- borderColor: string
23
- borderWidth: number
24
- borderDash?: string
25
- fill: boolean
26
- data: Data[]
27
- }
28
-
29
- export interface Data {
30
- x: string
31
- y: number
32
- r: number
33
- pivot: string
34
- }