win-chart 1.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/.eslintrc.json +3 -0
- package/.prettierrc.json +5 -0
- package/README.md +0 -0
- package/localhost-key.pem +28 -0
- package/localhost.pem +25 -0
- package/package.json +65 -0
- package/rsbuild.config.ts +48 -0
- package/src/api/README.md +15 -0
- package/src/api/index.js +5 -0
- package/src/api/layout/index.js +32 -0
- package/src/api/request.ts +87 -0
- package/src/api/url-map/index.js +10 -0
- package/src/api/user/index.js +12 -0
- package/src/components/FilterContext.tsx +6 -0
- package/src/components/GlobalStyle.tsx +25 -0
- package/src/components/HalfScreenBrowser.tsx +95 -0
- package/src/components/ImgBox.tsx +19 -0
- package/src/components/JumpBtn.tsx +38 -0
- package/src/components/MCardWrapper.tsx +33 -0
- package/src/components/NoContent/index.tsx +85 -0
- package/src/components/ResponsiveReactGridLayout.tsx +218 -0
- package/src/components/SliderDecoration.tsx +27 -0
- package/src/components/VisionUserConfigContext.ts +6 -0
- package/src/components/WinMenu/README.md +11 -0
- package/src/components/WinMenu/WinHeader.tsx +5 -0
- package/src/components/WinMenu/components/ExtraBox.tsx +61 -0
- package/src/components/WinMenu/components/FullMenuBox.tsx +80 -0
- package/src/components/WinMenu/components/FullMenuContainer.tsx +50 -0
- package/src/components/WinMenu/components/FullMenuItem.tsx +128 -0
- package/src/components/WinMenu/components/LangSwitch.tsx +84 -0
- package/src/components/WinMenu/components/LogoBox.tsx +29 -0
- package/src/components/WinMenu/components/PinDialog.tsx +72 -0
- package/src/components/WinMenu/components/PinnedMenuBox.tsx +183 -0
- package/src/components/WinMenu/components/UserBox.tsx +83 -0
- package/src/components/WinMenu/hooks/useUserInfo.ts +21 -0
- package/src/components/WinMenu/hooks/useUserMenu.ts +35 -0
- package/src/components/WinMenu/index.tsx +100 -0
- package/src/components/WinMenu/services/WinService.ts +79 -0
- package/src/components/WinMenu/services/request.ts +53 -0
- package/src/components/WinMenu/utils/const.ts +80 -0
- package/src/components/WinMenu/utils/enum.ts +19 -0
- package/src/components/WinMenu/utils/interface.ts +61 -0
- package/src/components/WinMenu/utils/map.ts +39 -0
- package/src/components/WinMenu/utils/tool.ts +142 -0
- package/src/components/WinMenu/utils/type.ts +1 -0
- package/src/components/hover-view.tsx +48 -0
- package/src/components/icon.tsx +44 -0
- package/src/components/indicator-remark.tsx +25 -0
- package/src/components/none-content.tsx +93 -0
- package/src/components/panel-tab.tsx +150 -0
- package/src/components/panel-title-tab.tsx +60 -0
- package/src/components/win-card/components/ChartContent.tsx +47 -0
- package/src/components/win-card/components/Indicator.tsx +42 -0
- package/src/components/win-card/components/IndicatorArea.tsx +63 -0
- package/src/components/win-card/components/IndicatorInfo.tsx +78 -0
- package/src/components/win-card/components/MatterContent.tsx +121 -0
- package/src/components/win-card/components/MatterList.tsx +141 -0
- package/src/components/win-card/components/NoticeContent.tsx +73 -0
- package/src/components/win-card/components/NoticeList.tsx +68 -0
- package/src/components/win-card/components/SelectDecoration.tsx +34 -0
- package/src/components/win-card/components/WinRankContent.tsx +102 -0
- package/src/components/win-card/index.tsx +298 -0
- package/src/components/win-card/utils/interface.ts +12 -0
- package/src/components/win-card/utils/tool.ts +11 -0
- package/src/components/win-card-mobile/components/ChartContent.tsx +47 -0
- package/src/components/win-card-mobile/components/DualLineBar.tsx +61 -0
- package/src/components/win-card-mobile/components/Indicator.tsx +42 -0
- package/src/components/win-card-mobile/components/IndicatorArea.tsx +65 -0
- package/src/components/win-card-mobile/components/IndicatorInfo.tsx +83 -0
- package/src/components/win-card-mobile/components/SelectDecoration.tsx +28 -0
- package/src/components/win-card-mobile/index.tsx +235 -0
- package/src/components/win-card-mobile/utils/interface.ts +12 -0
- package/src/components/win-card-mobile/utils/tool.ts +9 -0
- package/src/components/win-chart/components/chart-wrapper.tsx +5 -0
- package/src/components/win-chart/index.tsx +59 -0
- package/src/components/win-chart/theme/win-dark.json +372 -0
- package/src/components/win-chart/theme/win-light.json +372 -0
- package/src/components/win-chart/utils/const.ts +37 -0
- package/src/components/win-chart/utils/getAreaSpec.ts +150 -0
- package/src/components/win-chart/utils/getBarSpec.ts +60 -0
- package/src/components/win-chart/utils/getChartOptions.ts +59 -0
- package/src/components/win-chart/utils/getColumnSpec.ts +112 -0
- package/src/components/win-chart/utils/getDualSpec.ts +79 -0
- package/src/components/win-chart/utils/getFunnelSpec.ts +70 -0
- package/src/components/win-chart/utils/getLineSpec.ts +53 -0
- package/src/components/win-chart/utils/getPieSpec.ts +124 -0
- package/src/components/win-chart/utils/getRadarSpec.ts +87 -0
- package/src/components/win-chart/utils/tool.ts +163 -0
- package/src/components/win-chart/utils/type.ts +96 -0
- package/src/components/win-icon/index.tsx +97 -0
- package/src/components/win-v/components/EmptyBox.tsx +9 -0
- package/src/components/win-v/components/VDialog.tsx +173 -0
- package/src/components/win-v/components/VDialogBtn.tsx +119 -0
- package/src/components/win-v/components/VDialogMsg.tsx +325 -0
- package/src/components/win-v/components/VInput.tsx +15 -0
- package/src/components/win-v/components/VRemindMsgList.tsx +303 -0
- package/src/components/win-v/components/VRobot.tsx +97 -0
- package/src/components/win-v/hooks/useVDialogCore.ts +102 -0
- package/src/components/win-v/hooks/useVDialogOperate.ts +132 -0
- package/src/components/win-v/hooks/useVDialogState.ts +52 -0
- package/src/components/win-v/hooks/useVRemindMsgShow.ts +15 -0
- package/src/components/win-v/index.tsx +205 -0
- package/src/components/win-wrappers/card-wrapper.tsx +103 -0
- package/src/components/win-wrappers/dot-wrapper.tsx +18 -0
- package/src/components/win-wrappers/iframe-wrapper.tsx +7 -0
- package/src/components/win-wrappers/request-wrapper.tsx +190 -0
- package/src/global.d.ts +53 -0
- package/src/hooks/useCardOptionList.ts +23 -0
- package/src/hooks/useCostFiltersDicList.ts +22 -0
- package/src/hooks/useFbiUrl.ts +22 -0
- package/src/hooks/useHalfScreenState.ts +50 -0
- package/src/hooks/useHasIntersected.ts +36 -0
- package/src/hooks/useIndicatorCardInfo.ts +26 -0
- package/src/hooks/useIndicatorCardQueryList.ts +22 -0
- package/src/hooks/useIndicatorClassifyList.ts +25 -0
- package/src/hooks/useIndicatorDetailsDateList.ts +22 -0
- package/src/hooks/useIndicatorDetailsInfo.ts +49 -0
- package/src/hooks/useIndicatorDetailsTrend.ts +25 -0
- package/src/hooks/useIndicatorDicList.ts +22 -0
- package/src/hooks/useIndicatorLabelList.ts +20 -0
- package/src/hooks/useIndicatorList.ts +24 -0
- package/src/hooks/useIndicatorRangeList.ts +20 -0
- package/src/hooks/useIndicatorTypeList.ts +20 -0
- package/src/hooks/useIndicatorUnitList.ts +21 -0
- package/src/hooks/useListenQuery.ts +29 -0
- package/src/hooks/useMobile.ts +58 -0
- package/src/hooks/useNotice.ts +42 -0
- package/src/hooks/useOrgLevelList.ts +23 -0
- package/src/hooks/usePageSelection.ts +121 -0
- package/src/hooks/usePageState.ts +22 -0
- package/src/hooks/usePendingList.ts +27 -0
- package/src/hooks/usePortalPageInfo.ts +43 -0
- package/src/hooks/useRefreshByLocationChange.ts +16 -0
- package/src/hooks/useReportIndicatorList.ts +21 -0
- package/src/hooks/useReportInfo.ts +45 -0
- package/src/hooks/useReportPersonList.ts +21 -0
- package/src/hooks/useScriptLoader.ts +22 -0
- package/src/hooks/useUnreadMsgList.ts +26 -0
- package/src/hooks/useUserAvatar.ts +23 -0
- package/src/hooks/useVReportInfo.ts +50 -0
- package/src/hooks/useVisionUserConfig.ts +25 -0
- package/src/hooks/useWorkbenchOptions.ts +63 -0
- package/src/index.tsx +20 -0
- package/src/services/CardService.ts +91 -0
- package/src/services/CommonService.ts +23 -0
- package/src/services/CostService.ts +56 -0
- package/src/services/DialogService.ts +74 -0
- package/src/services/IndicatorService.ts +406 -0
- package/src/services/PageService.ts +204 -0
- package/src/services/ReportService.ts +335 -0
- package/src/services/WorkbenchService.ts +411 -0
- package/src/styles/README.md +12 -0
- package/src/styles/index.scss +9 -0
- package/src/styles/mixins/index.scss +25 -0
- package/src/styles/next-cover.scss +4 -0
- package/src/styles/normalize.scss +27 -0
- package/src/styles/utilities/index.scss +5 -0
- package/src/styles/vars/index.scss +17 -0
- package/src/types/enum-workbench.ts +29 -0
- package/src/types/enum.ts +156 -0
- package/src/types/index.ts +19 -0
- package/src/types/indicator.ts +299 -0
- package/src/types/interface.ts +303 -0
- package/src/types/portal.ts +211 -0
- package/src/types/report.ts +28 -0
- package/src/types/type.ts +11 -0
- package/src/types/user.ts +28 -0
- package/src/utils/README.md +4 -0
- package/src/utils/arms.ts +59 -0
- package/src/utils/arr.ts +123 -0
- package/src/utils/const-workbench.ts +9 -0
- package/src/utils/const.ts +18 -0
- package/src/utils/index.ts +18 -0
- package/src/utils/init.ts +5 -0
- package/src/utils/map-workbench.ts +66 -0
- package/src/utils/map.ts +377 -0
- package/src/utils/number.ts +101 -0
- package/src/utils/page.ts +81 -0
- package/src/utils/str.ts +26 -0
- package/src/utils/tools.ts +44 -0
- package/src/utils/tree.ts +145 -0
- package/src/utils/url.ts +40 -0
- package/src/utils/util.ts +99 -0
- package/src/utils/workbench.ts +25 -0
- package/tsconfig.json +33 -0
|
@@ -0,0 +1,372 @@
|
|
|
1
|
+
{
|
|
2
|
+
"color": [
|
|
3
|
+
"#5798ff",
|
|
4
|
+
"#00dcf0",
|
|
5
|
+
"#ffc94d",
|
|
6
|
+
"#00db75",
|
|
7
|
+
"#b8b3ff",
|
|
8
|
+
"#40b4ff",
|
|
9
|
+
"#ffa101",
|
|
10
|
+
"#90abe0",
|
|
11
|
+
"#6ee67a",
|
|
12
|
+
"#6b84ff",
|
|
13
|
+
"#fa6b69"
|
|
14
|
+
],
|
|
15
|
+
"backgroundColor": "rgba(100,116,146,1)",
|
|
16
|
+
"textStyle": {},
|
|
17
|
+
"title": {
|
|
18
|
+
"textStyle": {
|
|
19
|
+
"color": "#ffffff"
|
|
20
|
+
},
|
|
21
|
+
"subtextStyle": {
|
|
22
|
+
"color": "#ffffff"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"line": {
|
|
26
|
+
"itemStyle": {
|
|
27
|
+
"borderWidth": "1"
|
|
28
|
+
},
|
|
29
|
+
"lineStyle": {
|
|
30
|
+
"width": "2"
|
|
31
|
+
},
|
|
32
|
+
"symbolSize": "6",
|
|
33
|
+
"symbol": "emptyCircle",
|
|
34
|
+
"smooth": true
|
|
35
|
+
},
|
|
36
|
+
"radar": {
|
|
37
|
+
"itemStyle": {
|
|
38
|
+
"borderWidth": "1"
|
|
39
|
+
},
|
|
40
|
+
"lineStyle": {
|
|
41
|
+
"width": "2"
|
|
42
|
+
},
|
|
43
|
+
"symbolSize": "6",
|
|
44
|
+
"symbol": "emptyCircle",
|
|
45
|
+
"smooth": true
|
|
46
|
+
},
|
|
47
|
+
"bar": {
|
|
48
|
+
"itemStyle": {
|
|
49
|
+
"barBorderWidth": "0",
|
|
50
|
+
"barBorderColor": "#cccccc"
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
"pie": {
|
|
54
|
+
"itemStyle": {
|
|
55
|
+
"borderWidth": "0",
|
|
56
|
+
"borderColor": "#cccccc"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
"scatter": {
|
|
60
|
+
"itemStyle": {
|
|
61
|
+
"borderWidth": "0",
|
|
62
|
+
"borderColor": "#cccccc"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"boxplot": {
|
|
66
|
+
"itemStyle": {
|
|
67
|
+
"borderWidth": "0",
|
|
68
|
+
"borderColor": "#cccccc"
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"parallel": {
|
|
72
|
+
"itemStyle": {
|
|
73
|
+
"borderWidth": "0",
|
|
74
|
+
"borderColor": "#cccccc"
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"sankey": {
|
|
78
|
+
"itemStyle": {
|
|
79
|
+
"borderWidth": "0",
|
|
80
|
+
"borderColor": "#cccccc"
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"funnel": {
|
|
84
|
+
"itemStyle": {
|
|
85
|
+
"borderWidth": "0",
|
|
86
|
+
"borderColor": "#cccccc"
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
"gauge": {
|
|
90
|
+
"itemStyle": {
|
|
91
|
+
"borderWidth": "0",
|
|
92
|
+
"borderColor": "#cccccc"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"candlestick": {
|
|
96
|
+
"itemStyle": {
|
|
97
|
+
"color": "#f15451",
|
|
98
|
+
"color0": "#00c267",
|
|
99
|
+
"borderColor": "#f15451",
|
|
100
|
+
"borderColor0": "#00c267",
|
|
101
|
+
"borderWidth": 1
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"graph": {
|
|
105
|
+
"itemStyle": {
|
|
106
|
+
"borderWidth": "0",
|
|
107
|
+
"borderColor": "#cccccc"
|
|
108
|
+
},
|
|
109
|
+
"lineStyle": {
|
|
110
|
+
"width": "1",
|
|
111
|
+
"color": "#ffffff"
|
|
112
|
+
},
|
|
113
|
+
"symbolSize": "6",
|
|
114
|
+
"symbol": "emptyCircle",
|
|
115
|
+
"smooth": true,
|
|
116
|
+
"color": [
|
|
117
|
+
"#5798ff",
|
|
118
|
+
"#00dcf0",
|
|
119
|
+
"#ffc94d",
|
|
120
|
+
"#00db75",
|
|
121
|
+
"#b8b3ff",
|
|
122
|
+
"#40b4ff",
|
|
123
|
+
"#ffa101",
|
|
124
|
+
"#90abe0",
|
|
125
|
+
"#6ee67a",
|
|
126
|
+
"#6b84ff",
|
|
127
|
+
"#fa6b69"
|
|
128
|
+
],
|
|
129
|
+
"label": {
|
|
130
|
+
"color": "#ffffff"
|
|
131
|
+
}
|
|
132
|
+
},
|
|
133
|
+
"map": {
|
|
134
|
+
"itemStyle": {
|
|
135
|
+
"areaColor": "#eee",
|
|
136
|
+
"borderColor": "#444",
|
|
137
|
+
"borderWidth": 0.5
|
|
138
|
+
},
|
|
139
|
+
"label": {
|
|
140
|
+
"color": "#000"
|
|
141
|
+
},
|
|
142
|
+
"emphasis": {
|
|
143
|
+
"itemStyle": {
|
|
144
|
+
"areaColor": "rgba(255,215,0,0.8)",
|
|
145
|
+
"borderColor": "#444",
|
|
146
|
+
"borderWidth": 1
|
|
147
|
+
},
|
|
148
|
+
"label": {
|
|
149
|
+
"color": "rgb(100,0,0)"
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
},
|
|
153
|
+
"geo": {
|
|
154
|
+
"itemStyle": {
|
|
155
|
+
"areaColor": "#eee",
|
|
156
|
+
"borderColor": "#444",
|
|
157
|
+
"borderWidth": 0.5
|
|
158
|
+
},
|
|
159
|
+
"label": {
|
|
160
|
+
"color": "#000"
|
|
161
|
+
},
|
|
162
|
+
"emphasis": {
|
|
163
|
+
"itemStyle": {
|
|
164
|
+
"areaColor": "rgba(255,215,0,0.8)",
|
|
165
|
+
"borderColor": "#444",
|
|
166
|
+
"borderWidth": 1
|
|
167
|
+
},
|
|
168
|
+
"label": {
|
|
169
|
+
"color": "rgb(100,0,0)"
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
},
|
|
173
|
+
"categoryAxis": {
|
|
174
|
+
"axisLine": {
|
|
175
|
+
"show": true,
|
|
176
|
+
"lineStyle": {
|
|
177
|
+
"color": "rgba(255,255,255,0.12)"
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
"axisTick": {
|
|
181
|
+
"show": true,
|
|
182
|
+
"lineStyle": {
|
|
183
|
+
"color": "rgba(255,255,255,0.12)"
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
"axisLabel": {
|
|
187
|
+
"show": true,
|
|
188
|
+
"color": "rgba(255,255,255,0.5)"
|
|
189
|
+
},
|
|
190
|
+
"splitLine": {
|
|
191
|
+
"show": false,
|
|
192
|
+
"lineStyle": {
|
|
193
|
+
"color": ["#E0E6F1"]
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
"splitArea": {
|
|
197
|
+
"show": false,
|
|
198
|
+
"areaStyle": {
|
|
199
|
+
"color": ["rgba(250,250,250,0.2)", "rgba(210,219,238,0.2)"]
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
},
|
|
203
|
+
"valueAxis": {
|
|
204
|
+
"axisLine": {
|
|
205
|
+
"show": false,
|
|
206
|
+
"lineStyle": {
|
|
207
|
+
"color": "#6E7079"
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
"axisTick": {
|
|
211
|
+
"show": false,
|
|
212
|
+
"lineStyle": {
|
|
213
|
+
"color": "#6E7079"
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
"axisLabel": {
|
|
217
|
+
"show": true,
|
|
218
|
+
"color": "rgba(255,255,255,0.5)"
|
|
219
|
+
},
|
|
220
|
+
"splitLine": {
|
|
221
|
+
"show": true,
|
|
222
|
+
"lineStyle": {
|
|
223
|
+
"color": ["rgba(255,255,255,0.12)"]
|
|
224
|
+
}
|
|
225
|
+
},
|
|
226
|
+
"splitArea": {
|
|
227
|
+
"show": false,
|
|
228
|
+
"areaStyle": {
|
|
229
|
+
"color": ["rgba(250,250,250,0.2)", "rgba(210,219,238,0.2)"]
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
},
|
|
233
|
+
"logAxis": {
|
|
234
|
+
"axisLine": {
|
|
235
|
+
"show": false,
|
|
236
|
+
"lineStyle": {
|
|
237
|
+
"color": "#6E7079"
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
"axisTick": {
|
|
241
|
+
"show": false,
|
|
242
|
+
"lineStyle": {
|
|
243
|
+
"color": "#6E7079"
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
"axisLabel": {
|
|
247
|
+
"show": true,
|
|
248
|
+
"color": "rgba(255,255,255,0.5)"
|
|
249
|
+
},
|
|
250
|
+
"splitLine": {
|
|
251
|
+
"show": true,
|
|
252
|
+
"lineStyle": {
|
|
253
|
+
"color": ["rgba(255,255,255,0.12)"]
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
"splitArea": {
|
|
257
|
+
"show": false,
|
|
258
|
+
"areaStyle": {
|
|
259
|
+
"color": ["rgba(250,250,250,0.2)", "rgba(210,219,238,0.2)"]
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
"timeAxis": {
|
|
264
|
+
"axisLine": {
|
|
265
|
+
"show": true,
|
|
266
|
+
"lineStyle": {
|
|
267
|
+
"color": "rgba(255,255,255,0.12)"
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
"axisTick": {
|
|
271
|
+
"show": true,
|
|
272
|
+
"lineStyle": {
|
|
273
|
+
"color": "rgba(255,255,255,0.12)"
|
|
274
|
+
}
|
|
275
|
+
},
|
|
276
|
+
"axisLabel": {
|
|
277
|
+
"show": true,
|
|
278
|
+
"color": "rgba(255,255,255,0.5)"
|
|
279
|
+
},
|
|
280
|
+
"splitLine": {
|
|
281
|
+
"show": false,
|
|
282
|
+
"lineStyle": {
|
|
283
|
+
"color": ["#E0E6F1"]
|
|
284
|
+
}
|
|
285
|
+
},
|
|
286
|
+
"splitArea": {
|
|
287
|
+
"show": false,
|
|
288
|
+
"areaStyle": {
|
|
289
|
+
"color": ["rgba(250,250,250,0.2)", "rgba(210,219,238,0.2)"]
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
},
|
|
293
|
+
"toolbox": {
|
|
294
|
+
"iconStyle": {
|
|
295
|
+
"borderColor": "#ffffff"
|
|
296
|
+
},
|
|
297
|
+
"emphasis": {
|
|
298
|
+
"iconStyle": {
|
|
299
|
+
"borderColor": "#ffffff"
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
},
|
|
303
|
+
"legend": {
|
|
304
|
+
"textStyle": {
|
|
305
|
+
"color": "#ffffff"
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
"tooltip": {
|
|
309
|
+
"axisPointer": {
|
|
310
|
+
"lineStyle": {
|
|
311
|
+
"color": "#ffffff",
|
|
312
|
+
"width": "1"
|
|
313
|
+
},
|
|
314
|
+
"crossStyle": {
|
|
315
|
+
"color": "#ffffff",
|
|
316
|
+
"width": "1"
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
},
|
|
320
|
+
"timeline": {
|
|
321
|
+
"lineStyle": {
|
|
322
|
+
"color": "#ffffff",
|
|
323
|
+
"width": 2
|
|
324
|
+
},
|
|
325
|
+
"itemStyle": {
|
|
326
|
+
"color": "#ffffff",
|
|
327
|
+
"borderWidth": "1"
|
|
328
|
+
},
|
|
329
|
+
"controlStyle": {
|
|
330
|
+
"color": "#ffffff",
|
|
331
|
+
"borderColor": "#ffffff",
|
|
332
|
+
"borderWidth": 1
|
|
333
|
+
},
|
|
334
|
+
"checkpointStyle": {
|
|
335
|
+
"color": "#5798ff",
|
|
336
|
+
"borderColor": "#ffffff"
|
|
337
|
+
},
|
|
338
|
+
"label": {
|
|
339
|
+
"color": "#ffffff"
|
|
340
|
+
},
|
|
341
|
+
"emphasis": {
|
|
342
|
+
"itemStyle": {
|
|
343
|
+
"color": "#5798ff"
|
|
344
|
+
},
|
|
345
|
+
"controlStyle": {
|
|
346
|
+
"color": "#ffffff",
|
|
347
|
+
"borderColor": "#ffffff",
|
|
348
|
+
"borderWidth": 1
|
|
349
|
+
},
|
|
350
|
+
"label": {
|
|
351
|
+
"color": "#ffffff"
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
"visualMap": {
|
|
356
|
+
"color": ["#062379", "#2058d2", "#3379ff", "#a0cbff", "#e8f4ff"]
|
|
357
|
+
},
|
|
358
|
+
"dataZoom": {
|
|
359
|
+
"handleSize": "undefined%",
|
|
360
|
+
"textStyle": {}
|
|
361
|
+
},
|
|
362
|
+
"markPoint": {
|
|
363
|
+
"label": {
|
|
364
|
+
"color": "#ffffff"
|
|
365
|
+
},
|
|
366
|
+
"emphasis": {
|
|
367
|
+
"label": {
|
|
368
|
+
"color": "#ffffff"
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
}
|