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
| {
| "categories": [
| "1月11",
| "1月12",
| "1月11",
| "1月14",
| "1月15"
| ],
| "series": [{
| "name": "新增会员数",
| "data": [{
| "value": 5,
| "color": "#24ABFD"
| },
| {
| "value": -3,
| "color": "#24ABFD"
| },
| {
| "value": 3.5,
| "color": "#24ABFD"
| },
| {
| "value": 10,
| "color": "#24ABFD"
| },
| {
| "value": 2.8,
| "color": "#24ABFD"
| }
| ],
| "type": "column",
| "color": "#24ABFD",
| "unit": "",
| "textNoShow": true
| },
| {
| "name": "当日达成率",
| "data": [
| 101,
| 91,
| 97,
| 131,
| 109
| ],
| "type": "line",
| "addPoint": true,
| "color": "#DF297D",
| "unit": "%",
| "index": 1
| },
| {
| "name": "日均达成率",
| "data": [
| 102,
| 92,
| 96,
| 115,
| 105
| ],
| "type": "line",
| "style": "curve",
| "color": "#ff9900",
| "unit": "%",
| "index": 1
| },
| {
| "name": "日均达成率",
| "data": [
| 102,
| 92,
| 96,
| 115,
| 105
| ],
| "type": "area",
| "color": "#ff9900",
| "unit": "%",
| "index": 1
| }
| ],
| "yAxis": [{
| "max": 20,
| "min": 0
| }, {
| "max": 200,
| "min": 0
| }]
| }
|
|