@bizy/core 20.4.2 → 20.4.4
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.
- package/fesm2022/bizy-core.mjs +66 -20
- package/fesm2022/bizy-core.mjs.map +1 -1
- package/index.d.ts +13 -12
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -79,12 +79,16 @@ interface IBizyBarLineChartData {
|
|
|
79
79
|
discrete?: boolean;
|
|
80
80
|
color?: string;
|
|
81
81
|
stack?: string;
|
|
82
|
+
barMinHeight?: number;
|
|
82
83
|
xAxi?: {
|
|
83
84
|
name: string;
|
|
84
85
|
};
|
|
85
86
|
yAxi?: {
|
|
86
87
|
name?: string;
|
|
87
88
|
hide?: boolean;
|
|
89
|
+
max?: number;
|
|
90
|
+
min?: number;
|
|
91
|
+
interval?: number;
|
|
88
92
|
position?: 'left' | 'right';
|
|
89
93
|
onValueFormatter?: (item: any) => string;
|
|
90
94
|
};
|
|
@@ -95,10 +99,9 @@ declare class BizyBarLineChartComponent implements OnDestroy, AfterViewInit {
|
|
|
95
99
|
resizeRef: HTMLElement | null;
|
|
96
100
|
tooltip: boolean;
|
|
97
101
|
download: {
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
};
|
|
102
|
+
label?: string;
|
|
103
|
+
name?: string;
|
|
104
|
+
} | null;
|
|
102
105
|
axisPointer: 'line' | 'cross';
|
|
103
106
|
xAxisLabels: Array<string>;
|
|
104
107
|
onTooltipFormatter: (item: any) => string;
|
|
@@ -802,10 +805,9 @@ declare class BizyHeatMapChartComponent implements OnDestroy, AfterViewInit {
|
|
|
802
805
|
tooltip: boolean;
|
|
803
806
|
ranges: Array<IBizyHeatMapChartRange>;
|
|
804
807
|
download: {
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
};
|
|
808
|
+
label?: string;
|
|
809
|
+
name?: string;
|
|
810
|
+
} | null;
|
|
809
811
|
xAxisLabels: Array<string>;
|
|
810
812
|
yAxisLabels: Array<string>;
|
|
811
813
|
onTooltipFormatter: (item: any) => string;
|
|
@@ -930,10 +932,9 @@ declare class BizyPieChartComponent {
|
|
|
930
932
|
};
|
|
931
933
|
} | null;
|
|
932
934
|
download: {
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
};
|
|
935
|
+
label?: string;
|
|
936
|
+
name?: string;
|
|
937
|
+
} | null;
|
|
937
938
|
onLabelFormatter: (item: any) => string;
|
|
938
939
|
onTooltipFormatter: (item: any) => string;
|
|
939
940
|
onSelect: EventEmitter<string>;
|