1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
| <template>
| <div :id="mainIndex" class="main-box">
|
| </div>
| </template>
|
| <script setup>
| import { ref, onMounted, nextTick } from 'vue';
| // 引入 echarts 核心模块,核心模块提供了 echarts 使用必须要的接口。
| import * as echarts from 'echarts/core';
| // 引入柱状图图表,图表后缀都为 Chart
| import { LineChart } from 'echarts/charts';
| // 引入提示框,标题,直角坐标系,数据集,内置数据转换器组件,组件后缀都为 Component
| import {
| TitleComponent,
| TooltipComponent,
| GridComponent,
| DatasetComponent,
| TransformComponent
| } from 'echarts/components';
| // 标签自动布局,全局过渡动画等特性
| import { LabelLayout, UniversalTransition } from 'echarts/features';
| // 引入 Canvas 渲染器,注意引入 CanvasRenderer 或者 SVGRenderer 是必须的一步
| import { CanvasRenderer } from 'echarts/renderers';
|
| // 注册必须的组件
| echarts.use([
| TitleComponent,
| TooltipComponent,
| GridComponent,
| DatasetComponent,
| TransformComponent,
| LineChart,
| LabelLayout,
| UniversalTransition,
| CanvasRenderer
| ]);
|
|
| const props = defineProps({
| ratio: {
| type: Number,
| default: 0
| },
| dataObj: {
| type: Object,
| default() {
| return {}
| }
| },
| index: {
| type: Number,
| default: 0
| }
| })
| const { ratio, dataObj, index } = props;
| const mainIndex = `main${index}`
| onMounted(() => {
| nextTick(() => {
|
|
| const width = document.querySelector('.main-box').clientWidth;
| const height = document.querySelector('.main-box').clientHeight;
| const chartDom = document.getElementById(mainIndex);
|
| const lineChart = echarts.init(chartDom);
| chartDom.style.width = width + 'px';
| chartDom.style.height = height + 'px';
|
| function randomData() {
| now = new Date(+now + oneDay);
| value = value + Math.random() * 21 - 10;
| return {
| name: now.toString(),
| value: [
| [now.getFullYear(), now.getMonth() + 1, now.getDate()].join('/'),
| Math.round(value)
| ]
| };
| }
|
| let data = [];
| let now = new Date(1997, 9, 3);
| let oneDay = 24 * 3600 * 1000;
| let value = Math.random() * 1000;
| for (var i = 0; i < 1000; i++) {
| data.push(randomData());
| }
| let greenColor = [
| {
| offset: 0,
| color: 'rgb(17,202,161,0.8)'
| },
| {
| offset: 1,
| color: 'rgb(17,202,161,0.1)'
| }
| ]
| let redColor = [
| {
| offset: 0,
| color: 'rgb(227,85,97,0.8)'
| },
| {
| offset: 1,
| color: 'rgb(227,85,97,0.1)'
| }
| ]
| let option = {
| // tooltip: {
| // trigger: 'axis',
| // formatter: function (params) {
| // params = params[0];
| // let date = new Date(params.name);
| // return (
| // date.getDate() +
| // '/' +
| // (date.getMonth() + 1) +
| // '/' +
| // date.getFullYear() +
| // ' : ' +
| // params.value[1]
| // );
| // },
| // axisPointer: {
| // animation: false
| // }
| // },
| xAxis: {
| show: false,
| type: 'time',
| splitLine: {
| show: false
| }
| },
| yAxis: {
| show: false,
| type: 'value',
| boundaryGap: [0, '100%'],
| splitLine: {
| show: false
| }
| },
| series: [
| {
| name: 'Fake Data',
| type: 'line',
| showSymbol: false,
| data: data,
| itemStyle: {
| color: ratio < 0 ? '#E35561' : '#11caa1',
| },
| areaStyle: {
| color: new echarts.graphic.LinearGradient(0, 0, 0, 1, ratio < 0 ? redColor :greenColor)
| },
| },
|
| ]
| }
|
| option && lineChart.setOption(option);
| })
| })
|
| </script>
|
| <style lang="scss" scoped>
| .main-box {
| height: 55px !important;
| }
| </style>
|
|