cats-charts 0.0.6 → 0.0.8
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/README.md +36 -40
- package/fesm2022/cats-charts.mjs +263 -1
- package/fesm2022/cats-charts.mjs.map +1 -1
- package/index.d.ts +9 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -36,6 +36,14 @@ declare class ContextMenuListItem {
|
|
|
36
36
|
action?: (event?: ClickEvent) => void;
|
|
37
37
|
disabled?: boolean;
|
|
38
38
|
}
|
|
39
|
+
declare class PieChartOptionsConfig implements EChartsOption {
|
|
40
|
+
title?: TitleComponentOption;
|
|
41
|
+
legend?: LegendComponentOption;
|
|
42
|
+
tooltip?: TooltipComponentOption;
|
|
43
|
+
series?: SeriesOption[];
|
|
44
|
+
grid?: GridComponentOption;
|
|
45
|
+
[key: string]: any;
|
|
46
|
+
}
|
|
39
47
|
|
|
40
48
|
declare class ChartService {
|
|
41
49
|
private themeSignal;
|
|
@@ -108,4 +116,4 @@ declare class ChartsLib implements OnInit, OnChanges, DoCheck {
|
|
|
108
116
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChartsLib, "lib-charts-lib", never, { "chartType": { "alias": "chartType"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "data": { "alias": "data"; "required": false; }; "themeName": { "alias": "themeName"; "required": false; }; "chartOptionsConfig": { "alias": "chartOptionsConfig"; "required": false; }; "contextMenuList": { "alias": "contextMenuList"; "required": false; }; }, { "handleSingleClick": "handleSingleClick"; "handleDrillBy": "handleDrillBy"; }, never, never, true, never>;
|
|
109
117
|
}
|
|
110
118
|
|
|
111
|
-
export { ChartsLib, ChartsLibType, ClickEvent, ContextMenuListItem, OptionsConfig };
|
|
119
|
+
export { ChartsLib, ChartsLibType, ClickEvent, ContextMenuListItem, OptionsConfig, PieChartOptionsConfig };
|