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
| <template>
| <div id="myChart1" class="kline-BoxMain"></div>
| </template>
|
| <script>
| import echarts from "echarts";
|
| export default {
| name: "deepChart",
| data() {
| return {
| asks: [],
| bids: [],
| };
| },
| mounted() {
| this.drawLine()
| },
| props: {
|
| },
| computed: {},
| watch: {
|
| },
| methods: {
|
|
|
| drawLine() {
| // 基于准备好的dom,初始化echarts实例
| let myChart = echarts.init(document.getElementById("myChart1"));
| // 绘制图表
| myChart.setOption({
| tooltip: {
| trigger: 'item'
| },
| series: [
| {
| itemStyle: {
| normal: {
| color: function (colors) {
| var colorList = [
| '#FF698A',
| '#00E4C9',
| '#5CFAE4',
| '#FFABBD'
| ];
| return colorList[colors.dataIndex];
| }
| },
| },
| name: 'Access From',
| type: 'pie',
| radius: ['40%', '70%'],
| avoidLabelOverlap: false,
| label: {
| show: false,
| position: 'center'
| },
| label: {
| formatter: '{name|{b}}\n{time|{c} %}',
| minMargin: 10,
| edgeDistance: 10,
| lineHeight: 15,
| rich: {
| time: {
| fontSize: 12,
| color: '#fff'
| }
| }
| },
| labelLine: {
| normal: {
| length: 10,//第一段表示线
| length2: 30, // 第二段标示线
| },
| },
| data: [
| { value: 10, name: '中单卖出' },
| { value: 15, name: '中单买入' },
| { value: 30, name: '小单买入' },
| { value: 22, name: '小单卖出' },
| ]
| }
| ]
| });
| },
| },
| };
| </script>
| <style scoped>
| .kline-BoxMain {
| width: 100%;
| height: 450px;
| }
| </style>
|
|