@ebuilding/chart 2.0.0
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/LICENSE +0 -0
- package/README.md +0 -0
- package/echart/bar/index.d.ts +1 -0
- package/echart/bar/src/default/index.d.ts +34 -0
- package/echart/bar/src/index.module.d.ts +7 -0
- package/echart/bar/src/public_api.d.ts +2 -0
- package/echart/bar2/index.d.ts +1 -0
- package/echart/bar2/src/default/index.d.ts +33 -0
- package/echart/bar2/src/index.module.d.ts +7 -0
- package/echart/bar2/src/public_api.d.ts +2 -0
- package/echart/content/index.d.ts +1 -0
- package/echart/content/src/default/index.d.ts +26 -0
- package/echart/content/src/index.module.d.ts +7 -0
- package/echart/content/src/public_api.d.ts +2 -0
- package/echart/index.d.ts +8 -0
- package/echart/indicator/index.d.ts +1 -0
- package/echart/indicator/src/default/index.d.ts +18 -0
- package/echart/indicator/src/index.module.d.ts +7 -0
- package/echart/indicator/src/public_api.d.ts +2 -0
- package/echart/line/index.d.ts +1 -0
- package/echart/line/src/default/index.d.ts +33 -0
- package/echart/line/src/index.module.d.ts +7 -0
- package/echart/line/src/public_api.d.ts +2 -0
- package/echart/number/index.d.ts +1 -0
- package/echart/number/src/default/index.d.ts +17 -0
- package/echart/number/src/index.module.d.ts +7 -0
- package/echart/number/src/public_api.d.ts +2 -0
- package/echart/pie/index.d.ts +1 -0
- package/echart/pie/src/default/index.d.ts +28 -0
- package/echart/pie/src/index.module.d.ts +7 -0
- package/echart/pie/src/public_api.d.ts +2 -0
- package/echart/radar/index.d.ts +1 -0
- package/echart/radar/src/default/index.d.ts +29 -0
- package/echart/radar/src/index.module.d.ts +7 -0
- package/echart/radar/src/public_api.d.ts +2 -0
- package/echart/sort/index.d.ts +1 -0
- package/echart/sort/src/default/index.d.ts +16 -0
- package/echart/sort/src/index.module.d.ts +7 -0
- package/echart/sort/src/public_api.d.ts +2 -0
- package/fesm2022/chart.echart.mjs +885 -0
- package/fesm2022/chart.echart.mjs.map +1 -0
- package/fesm2022/chart.report.mjs +145 -0
- package/fesm2022/chart.report.mjs.map +1 -0
- package/fesm2022/ebuilding-chart.mjs +8 -0
- package/fesm2022/ebuilding-chart.mjs.map +1 -0
- package/fesm2022/echart.bar.mjs +208 -0
- package/fesm2022/echart.bar.mjs.map +1 -0
- package/fesm2022/echart.bar2.mjs +179 -0
- package/fesm2022/echart.bar2.mjs.map +1 -0
- package/fesm2022/echart.content.mjs +100 -0
- package/fesm2022/echart.content.mjs.map +1 -0
- package/fesm2022/echart.indicator.mjs +70 -0
- package/fesm2022/echart.indicator.mjs.map +1 -0
- package/fesm2022/echart.line.mjs +165 -0
- package/fesm2022/echart.line.mjs.map +1 -0
- package/fesm2022/echart.number.mjs +58 -0
- package/fesm2022/echart.number.mjs.map +1 -0
- package/fesm2022/echart.pie.mjs +133 -0
- package/fesm2022/echart.pie.mjs.map +1 -0
- package/fesm2022/echart.radar.mjs +119 -0
- package/fesm2022/echart.radar.mjs.map +1 -0
- package/fesm2022/echart.sort.mjs +51 -0
- package/fesm2022/echart.sort.mjs.map +1 -0
- package/fesm2022/srv.base.mjs +151 -0
- package/fesm2022/srv.base.mjs.map +1 -0
- package/index.d.ts +3 -0
- package/package.json +68 -0
- package/report/index.d.ts +1 -0
- package/report/src/default/index.d.ts +21 -0
- package/report/src/index.module.d.ts +7 -0
- package/report/src/public_api.d.ts +2 -0
- package/service/index.d.ts +53 -0
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { ElementRef, OnDestroy } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare abstract class GramBaseChartService implements OnDestroy {
|
|
4
|
+
/**
|
|
5
|
+
* 图表数据
|
|
6
|
+
*/
|
|
7
|
+
chartData: any[];
|
|
8
|
+
/**
|
|
9
|
+
* 图表配置
|
|
10
|
+
*/
|
|
11
|
+
chartOption: any;
|
|
12
|
+
/**
|
|
13
|
+
* 图表缩略图
|
|
14
|
+
*/
|
|
15
|
+
chartLegend: any;
|
|
16
|
+
/**
|
|
17
|
+
* 图表标题
|
|
18
|
+
*/
|
|
19
|
+
chartTitle: any;
|
|
20
|
+
/**
|
|
21
|
+
* 图表实例
|
|
22
|
+
*/
|
|
23
|
+
chartInstance: any;
|
|
24
|
+
/**
|
|
25
|
+
* 基础颜色集合
|
|
26
|
+
*/
|
|
27
|
+
color: string[];
|
|
28
|
+
config: any;
|
|
29
|
+
/**
|
|
30
|
+
* 图表容器
|
|
31
|
+
*/
|
|
32
|
+
chartContainer: ElementRef;
|
|
33
|
+
/**
|
|
34
|
+
* 销毁函数
|
|
35
|
+
*/
|
|
36
|
+
ngOnDestroy(): void;
|
|
37
|
+
/**
|
|
38
|
+
* 销毁图表
|
|
39
|
+
*/
|
|
40
|
+
disposeChart(): void;
|
|
41
|
+
/**
|
|
42
|
+
* 初始化图例
|
|
43
|
+
* @returns
|
|
44
|
+
*/
|
|
45
|
+
initChartLegend(): void;
|
|
46
|
+
initChartTitle(): void;
|
|
47
|
+
/**
|
|
48
|
+
* 加载数据
|
|
49
|
+
*/
|
|
50
|
+
loadChartInfo(): void;
|
|
51
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GramBaseChartService, never>;
|
|
52
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<GramBaseChartService, never, never, { "config": { "alias": "config"; "required": false; }; }, {}, never, never, true, never>;
|
|
53
|
+
}
|