@ebuilding/chart 2.1.7 → 2.1.9
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/chart.echart.mjs +85 -26
- package/fesm2022/chart.echart.mjs.map +1 -1
- package/fesm2022/echart.bar.mjs +29 -32
- package/fesm2022/echart.bar.mjs.map +1 -1
- package/fesm2022/echart.bar2.mjs +9 -1
- package/fesm2022/echart.bar2.mjs.map +1 -1
- package/fesm2022/echart.category-stack.mjs +228 -0
- package/fesm2022/echart.category-stack.mjs.map +1 -0
- package/fesm2022/echart.gauge.mjs +161 -0
- package/fesm2022/echart.gauge.mjs.map +1 -0
- package/package.json +16 -16
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Component, NgModule } from '@angular/core';
|
|
3
|
+
import { CommonModule } from '@angular/common';
|
|
4
|
+
import * as echarts from 'echarts/core';
|
|
5
|
+
import { GaugeChart } from 'echarts/charts';
|
|
6
|
+
import { TitleComponent, TooltipComponent, GridComponent, LegendComponent } from 'echarts/components';
|
|
7
|
+
import { CanvasRenderer } from 'echarts/renderers';
|
|
8
|
+
import { GramBaseChartService } from '@ebuilding/chart/service';
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* gauge
|
|
12
|
+
*/
|
|
13
|
+
echarts.use([GaugeChart, TitleComponent, TooltipComponent, GridComponent, LegendComponent, CanvasRenderer]);
|
|
14
|
+
class EchartGaugeMainComponent extends GramBaseChartService {
|
|
15
|
+
color = [
|
|
16
|
+
'#71D1FF',
|
|
17
|
+
'#71A9FF',
|
|
18
|
+
'#8C94FC',
|
|
19
|
+
'#DDB0F0',
|
|
20
|
+
'#FFCA5E',
|
|
21
|
+
'#FFB15E',
|
|
22
|
+
'#71D1FF',
|
|
23
|
+
'#71A9FF',
|
|
24
|
+
'#8C94FC',
|
|
25
|
+
'#DDB0F0',
|
|
26
|
+
'#FFCA5E',
|
|
27
|
+
'#FFB15E',
|
|
28
|
+
];
|
|
29
|
+
constructor() {
|
|
30
|
+
super();
|
|
31
|
+
}
|
|
32
|
+
ngOnInit() { }
|
|
33
|
+
initChartData() {
|
|
34
|
+
if (this.config && this.config?.data && this.config?.data?.val && Array.isArray(this.config.data.val) && this.config.data.val.length > 0) {
|
|
35
|
+
let item = this.config.data.val[0];
|
|
36
|
+
if (item && item?.data && item?.data?.length > 0) {
|
|
37
|
+
this.chartData = [
|
|
38
|
+
{
|
|
39
|
+
value: item?.data[0],
|
|
40
|
+
name: null
|
|
41
|
+
}
|
|
42
|
+
];
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* 初始化图表配置
|
|
48
|
+
*/
|
|
49
|
+
initChartOption() {
|
|
50
|
+
this.chartOption = {
|
|
51
|
+
tooltip: {
|
|
52
|
+
formatter: '{a} <br/>{b} : {c}%'
|
|
53
|
+
},
|
|
54
|
+
series: [
|
|
55
|
+
{
|
|
56
|
+
type: 'gauge',
|
|
57
|
+
startAngle: 180,
|
|
58
|
+
endAngle: 0,
|
|
59
|
+
center: ['50%', '50%'], // ★★ 下移半圆,让文字靠近环
|
|
60
|
+
radius: '90%', // ★★ 调整半圆大小
|
|
61
|
+
progress: {
|
|
62
|
+
show: true,
|
|
63
|
+
width: 5
|
|
64
|
+
},
|
|
65
|
+
axisLine: {
|
|
66
|
+
lineStyle: {
|
|
67
|
+
width: 5
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
axisTick: {
|
|
71
|
+
show: false
|
|
72
|
+
},
|
|
73
|
+
splitLine: {
|
|
74
|
+
length: 5,
|
|
75
|
+
lineStyle: {
|
|
76
|
+
width: 3,
|
|
77
|
+
color: '#999'
|
|
78
|
+
}
|
|
79
|
+
},
|
|
80
|
+
axisLabel: {
|
|
81
|
+
distance: 8,
|
|
82
|
+
color: '#999',
|
|
83
|
+
fontSize: 10
|
|
84
|
+
},
|
|
85
|
+
anchor: {
|
|
86
|
+
show: true,
|
|
87
|
+
showAbove: true,
|
|
88
|
+
size: 10,
|
|
89
|
+
itemStyle: {
|
|
90
|
+
borderWidth: 2
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
title: {
|
|
94
|
+
show: false
|
|
95
|
+
},
|
|
96
|
+
detail: {
|
|
97
|
+
valueAnimation: true,
|
|
98
|
+
fontSize: 14,
|
|
99
|
+
offsetCenter: [0, '18%']
|
|
100
|
+
},
|
|
101
|
+
data: this.chartData
|
|
102
|
+
}
|
|
103
|
+
]
|
|
104
|
+
};
|
|
105
|
+
}
|
|
106
|
+
/**
|
|
107
|
+
* 初始化图表数据
|
|
108
|
+
*/
|
|
109
|
+
loadChartInfo() {
|
|
110
|
+
if (this.config) {
|
|
111
|
+
this.initChartData();
|
|
112
|
+
this.initChartLegend();
|
|
113
|
+
this.initChartTitle();
|
|
114
|
+
this.initChartOption();
|
|
115
|
+
setTimeout(() => {
|
|
116
|
+
this.renderChart();
|
|
117
|
+
}, 0);
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* 渲染图表
|
|
122
|
+
*/
|
|
123
|
+
renderChart() {
|
|
124
|
+
if (!this.chartInstance) {
|
|
125
|
+
this.chartInstance = echarts.init(this.chartContainer.nativeElement);
|
|
126
|
+
this.chartInstance.setOption(this.chartOption);
|
|
127
|
+
window.addEventListener('resize', () => {
|
|
128
|
+
this.chartInstance?.resize();
|
|
129
|
+
});
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EchartGaugeMainComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
133
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: EchartGaugeMainComponent, isStandalone: true, selector: "echart-gauge", usesInheritance: true, ngImport: i0, template: "<div #chartContainer id=\"chartContainer\" style=\"width: 100%; height: 100%;\"></div>", styles: [":host ::ng-deep{display:flex;flex:1;flex-direction:column;width:100%;height:100%}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] });
|
|
134
|
+
}
|
|
135
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EchartGaugeMainComponent, decorators: [{
|
|
136
|
+
type: Component,
|
|
137
|
+
args: [{ selector: 'echart-gauge', imports: [
|
|
138
|
+
CommonModule
|
|
139
|
+
], template: "<div #chartContainer id=\"chartContainer\" style=\"width: 100%; height: 100%;\"></div>", styles: [":host ::ng-deep{display:flex;flex:1;flex-direction:column;width:100%;height:100%}\n"] }]
|
|
140
|
+
}], ctorParameters: () => [] });
|
|
141
|
+
|
|
142
|
+
const components = [EchartGaugeMainComponent];
|
|
143
|
+
class EchartGaugeModule {
|
|
144
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EchartGaugeModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
145
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.15", ngImport: i0, type: EchartGaugeModule, imports: [EchartGaugeMainComponent], exports: [EchartGaugeMainComponent] });
|
|
146
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EchartGaugeModule, imports: [components] });
|
|
147
|
+
}
|
|
148
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: EchartGaugeModule, decorators: [{
|
|
149
|
+
type: NgModule,
|
|
150
|
+
args: [{
|
|
151
|
+
imports: [...components],
|
|
152
|
+
exports: [...components],
|
|
153
|
+
}]
|
|
154
|
+
}] });
|
|
155
|
+
|
|
156
|
+
/**
|
|
157
|
+
* Generated bundle index. Do not edit.
|
|
158
|
+
*/
|
|
159
|
+
|
|
160
|
+
export { EchartGaugeMainComponent, EchartGaugeModule };
|
|
161
|
+
//# sourceMappingURL=echart.gauge.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"echart.gauge.mjs","sources":["../../../../packages/chart/echart/gauge/src/default/index.ts","../../../../packages/chart/echart/gauge/src/default/index.html","../../../../packages/chart/echart/gauge/src/index.module.ts","../../../../packages/chart/echart/gauge/echart.gauge.ts"],"sourcesContent":["/**\n * gauge\n */\nimport { Component, OnInit } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport * as echarts from 'echarts/core';\nimport { GaugeChart } from 'echarts/charts';\nimport { TitleComponent, TooltipComponent, GridComponent, LegendComponent } from 'echarts/components';\nimport { CanvasRenderer } from 'echarts/renderers';\nimport { GramBaseChartService } from '@ebuilding/chart/service';\nimport _ from 'lodash';\necharts.use([GaugeChart, TitleComponent, TooltipComponent, GridComponent, LegendComponent, CanvasRenderer]);\n\n@Component({\n selector: 'echart-gauge',\n templateUrl: './index.html',\n styleUrls: ['./index.less'],\n imports: [\n CommonModule\n ]\n})\nexport class EchartGaugeMainComponent extends GramBaseChartService implements OnInit {\n override color = [\n '#71D1FF',\n '#71A9FF',\n '#8C94FC',\n '#DDB0F0',\n '#FFCA5E',\n '#FFB15E',\n '#71D1FF',\n '#71A9FF',\n '#8C94FC',\n '#DDB0F0',\n '#FFCA5E',\n '#FFB15E',\n ];\n\n constructor() {\n super();\n }\n\n ngOnInit(): void { }\n\n initChartData() {\n if (this.config && this.config?.data && this.config?.data?.val && Array.isArray(this.config.data.val) && this.config.data.val.length > 0) {\n let item: any = this.config.data.val[0];\n if (item && item?.data && item?.data?.length > 0) {\n this.chartData = [\n {\n value: item?.data[0],\n name: null\n }\n ];\n }\n }\n }\n\n /**\n * 初始化图表配置\n */\n initChartOption() {\n\n this.chartOption = {\n tooltip: {\n formatter: '{a} <br/>{b} : {c}%'\n },\n series: [\n {\n type: 'gauge',\n startAngle: 180,\n endAngle: 0,\n center: ['50%', '50%'], // ★★ 下移半圆,让文字靠近环\n radius: '90%', // ★★ 调整半圆大小\n progress: {\n show: true,\n width: 5\n },\n axisLine: {\n lineStyle: {\n width: 5\n }\n },\n axisTick: {\n show: false\n },\n splitLine: {\n length: 5,\n lineStyle: {\n width: 3,\n color: '#999'\n }\n },\n axisLabel: {\n distance: 8,\n color: '#999',\n fontSize: 10\n },\n anchor: {\n show: true,\n showAbove: true,\n size: 10,\n itemStyle: {\n borderWidth: 2\n }\n },\n title: {\n show: false\n },\n detail: {\n valueAnimation: true,\n fontSize: 14,\n offsetCenter: [0, '18%']\n },\n data: this.chartData\n }\n ]\n };\n }\n\n /**\n * 初始化图表数据\n */\n override loadChartInfo() {\n if (this.config) {\n this.initChartData();\n this.initChartLegend();\n this.initChartTitle();\n this.initChartOption();\n setTimeout(() => {\n this.renderChart();\n }, 0);\n }\n }\n\n /**\n * 渲染图表\n */\n renderChart() {\n if (!this.chartInstance) {\n this.chartInstance = echarts.init(this.chartContainer.nativeElement);\n this.chartInstance.setOption(this.chartOption);\n window.addEventListener('resize', () => {\n this.chartInstance?.resize();\n });\n }\n }\n}\n","<div #chartContainer id=\"chartContainer\" style=\"width: 100%; height: 100%;\"></div>","import { NgModule } from '@angular/core';\nimport { EchartGaugeMainComponent } from './default/index';\nconst components: any[] = [EchartGaugeMainComponent];\n\n@NgModule({\n imports: [...components],\n exports: [...components],\n})\nexport class EchartGaugeModule { }\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ebuilding/chart",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.9",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"extend": "undefined",
|
|
6
6
|
"tslib": "^2.3.0"
|
|
@@ -19,25 +19,29 @@
|
|
|
19
19
|
"types": "./echart/index.d.ts",
|
|
20
20
|
"default": "./fesm2022/chart.echart.mjs"
|
|
21
21
|
},
|
|
22
|
-
"./service": {
|
|
23
|
-
"types": "./service/index.d.ts",
|
|
24
|
-
"default": "./fesm2022/srv.base.mjs"
|
|
25
|
-
},
|
|
26
22
|
"./report": {
|
|
27
23
|
"types": "./report/index.d.ts",
|
|
28
24
|
"default": "./fesm2022/chart.report.mjs"
|
|
29
25
|
},
|
|
26
|
+
"./service": {
|
|
27
|
+
"types": "./service/index.d.ts",
|
|
28
|
+
"default": "./fesm2022/srv.base.mjs"
|
|
29
|
+
},
|
|
30
30
|
"./echart/bar": {
|
|
31
31
|
"types": "./echart/bar/index.d.ts",
|
|
32
32
|
"default": "./fesm2022/echart.bar.mjs"
|
|
33
33
|
},
|
|
34
|
+
"./echart/category-stack": {
|
|
35
|
+
"types": "./echart/category-stack/index.d.ts",
|
|
36
|
+
"default": "./fesm2022/echart.category-stack.mjs"
|
|
37
|
+
},
|
|
34
38
|
"./echart/bar2": {
|
|
35
39
|
"types": "./echart/bar2/index.d.ts",
|
|
36
40
|
"default": "./fesm2022/echart.bar2.mjs"
|
|
37
41
|
},
|
|
38
|
-
"./echart/
|
|
39
|
-
"types": "./echart/
|
|
40
|
-
"default": "./fesm2022/echart.
|
|
42
|
+
"./echart/indicator": {
|
|
43
|
+
"types": "./echart/indicator/index.d.ts",
|
|
44
|
+
"default": "./fesm2022/echart.indicator.mjs"
|
|
41
45
|
},
|
|
42
46
|
"./echart/content": {
|
|
43
47
|
"types": "./echart/content/index.d.ts",
|
|
@@ -45,20 +49,16 @@
|
|
|
45
49
|
},
|
|
46
50
|
"./echart/gauge": {
|
|
47
51
|
"types": "./echart/gauge/index.d.ts",
|
|
48
|
-
"default": "./fesm2022/echart.
|
|
52
|
+
"default": "./fesm2022/echart.gauge.mjs"
|
|
49
53
|
},
|
|
50
|
-
"./echart/
|
|
51
|
-
"types": "./echart/
|
|
52
|
-
"default": "./fesm2022/echart.
|
|
54
|
+
"./echart/line": {
|
|
55
|
+
"types": "./echart/line/index.d.ts",
|
|
56
|
+
"default": "./fesm2022/echart.line.mjs"
|
|
53
57
|
},
|
|
54
58
|
"./echart/number": {
|
|
55
59
|
"types": "./echart/number/index.d.ts",
|
|
56
60
|
"default": "./fesm2022/echart.number.mjs"
|
|
57
61
|
},
|
|
58
|
-
"./echart/line": {
|
|
59
|
-
"types": "./echart/line/index.d.ts",
|
|
60
|
-
"default": "./fesm2022/echart.line.mjs"
|
|
61
|
-
},
|
|
62
62
|
"./echart/pie": {
|
|
63
63
|
"types": "./echart/pie/index.d.ts",
|
|
64
64
|
"default": "./fesm2022/echart.pie.mjs"
|