@covalent/echarts 0.0.1

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.
Files changed (238) hide show
  1. package/README.md +7 -0
  2. package/bar/README.md +65 -0
  3. package/bar/bar.component.d.ts +68 -0
  4. package/bar/bar.module.d.ts +10 -0
  5. package/bar/covalent-echarts-bar.d.ts +5 -0
  6. package/bar/package.json +10 -0
  7. package/bar/public_api.d.ts +2 -0
  8. package/base/README.md +59 -0
  9. package/base/axis/axis.component.d.ts +48 -0
  10. package/base/axis/axis.interface.d.ts +157 -0
  11. package/base/axis/x-axis.component.d.ts +10 -0
  12. package/base/axis/y-axis.component.d.ts +10 -0
  13. package/base/base.module.d.ts +13 -0
  14. package/base/base.types.d.ts +141 -0
  15. package/base/chart-options.service.d.ts +17 -0
  16. package/base/chart.component.d.ts +60 -0
  17. package/base/covalent-echarts-base.d.ts +5 -0
  18. package/base/dataset/dataset.component.d.ts +19 -0
  19. package/base/package.json +10 -0
  20. package/base/public_api.d.ts +12 -0
  21. package/base/series/series.component.d.ts +44 -0
  22. package/base/series/series.interface.d.ts +84 -0
  23. package/base/src/axis/README.md +58 -0
  24. package/base/src/dataset/README.md +80 -0
  25. package/base/themes/aqua-splash.d.ts +459 -0
  26. package/base/themes/california-coast.d.ts +459 -0
  27. package/base/themes/hawaiian-sunrise.d.ts +459 -0
  28. package/base/themes/passion-flower.d.ts +459 -0
  29. package/base/themes/razzleberry-pie.d.ts +459 -0
  30. package/base/themes/teradata-classic.d.ts +459 -0
  31. package/base/themes/teradata-default.d.ts +459 -0
  32. package/base/themes/urban-sunrise.d.ts +459 -0
  33. package/base/themes/volcanic-eruption.d.ts +459 -0
  34. package/base/utils/assign-defined.d.ts +1 -0
  35. package/base/utils/echarts.d.ts +15 -0
  36. package/base/utils/index.d.ts +2 -0
  37. package/covalent-echarts.d.ts +5 -0
  38. package/esm2020/bar/bar.component.mjs +135 -0
  39. package/esm2020/bar/bar.module.mjs +19 -0
  40. package/esm2020/bar/covalent-echarts-bar.mjs +5 -0
  41. package/esm2020/bar/public_api.mjs +3 -0
  42. package/esm2020/base/axis/axis.component.mjs +127 -0
  43. package/esm2020/base/axis/axis.interface.mjs +2 -0
  44. package/esm2020/base/axis/x-axis.component.mjs +55 -0
  45. package/esm2020/base/axis/y-axis.component.mjs +55 -0
  46. package/esm2020/base/base.module.mjs +35 -0
  47. package/esm2020/base/base.types.mjs +2 -0
  48. package/esm2020/base/chart-options.service.mjs +65 -0
  49. package/esm2020/base/chart.component.mjs +195 -0
  50. package/esm2020/base/covalent-echarts-base.mjs +5 -0
  51. package/esm2020/base/dataset/dataset.component.mjs +52 -0
  52. package/esm2020/base/public_api.mjs +10 -0
  53. package/esm2020/base/series/series.component.mjs +91 -0
  54. package/esm2020/base/series/series.interface.mjs +2 -0
  55. package/esm2020/base/themes/aqua-splash.mjs +487 -0
  56. package/esm2020/base/themes/california-coast.mjs +460 -0
  57. package/esm2020/base/themes/hawaiian-sunrise.mjs +460 -0
  58. package/esm2020/base/themes/passion-flower.mjs +460 -0
  59. package/esm2020/base/themes/razzleberry-pie.mjs +487 -0
  60. package/esm2020/base/themes/teradata-classic.mjs +487 -0
  61. package/esm2020/base/themes/teradata-default.mjs +460 -0
  62. package/esm2020/base/themes/urban-sunrise.mjs +460 -0
  63. package/esm2020/base/themes/volcanic-eruption.mjs +460 -0
  64. package/esm2020/base/utils/assign-defined.mjs +25 -0
  65. package/esm2020/base/utils/echarts.mjs +49 -0
  66. package/esm2020/base/utils/index.mjs +3 -0
  67. package/esm2020/covalent-echarts.mjs +5 -0
  68. package/esm2020/graph/covalent-echarts-graph.mjs +5 -0
  69. package/esm2020/graph/graph.component.mjs +185 -0
  70. package/esm2020/graph/graph.module.mjs +21 -0
  71. package/esm2020/graph/public_api.mjs +3 -0
  72. package/esm2020/line/covalent-echarts-line.mjs +5 -0
  73. package/esm2020/line/line.component.mjs +159 -0
  74. package/esm2020/line/line.module.mjs +19 -0
  75. package/esm2020/line/public_api.mjs +3 -0
  76. package/esm2020/map/covalent-echarts-map.mjs +5 -0
  77. package/esm2020/map/map.component.mjs +132 -0
  78. package/esm2020/map/map.module.mjs +19 -0
  79. package/esm2020/map/public_api.mjs +3 -0
  80. package/esm2020/pie/covalent-echarts-pie.mjs +5 -0
  81. package/esm2020/pie/pie.component.mjs +127 -0
  82. package/esm2020/pie/pie.module.mjs +19 -0
  83. package/esm2020/pie/public_api.mjs +3 -0
  84. package/esm2020/public_api.mjs +2 -0
  85. package/esm2020/sankey/covalent-echarts-sankey.mjs +5 -0
  86. package/esm2020/sankey/public_api.mjs +3 -0
  87. package/esm2020/sankey/sankey.component.mjs +117 -0
  88. package/esm2020/sankey/sankey.module.mjs +21 -0
  89. package/esm2020/scatter/covalent-echarts-scatter.mjs +5 -0
  90. package/esm2020/scatter/public_api.mjs +3 -0
  91. package/esm2020/scatter/scatter.component.mjs +144 -0
  92. package/esm2020/scatter/scatter.module.mjs +21 -0
  93. package/esm2020/toolbox/covalent-echarts-toolbox.mjs +5 -0
  94. package/esm2020/toolbox/public_api.mjs +3 -0
  95. package/esm2020/toolbox/toolbox.component.mjs +135 -0
  96. package/esm2020/toolbox/toolbox.module.mjs +24 -0
  97. package/esm2020/tooltip/covalent-echarts-tooltip.mjs +5 -0
  98. package/esm2020/tooltip/public_api.mjs +4 -0
  99. package/esm2020/tooltip/series-tooltip.component.mjs +102 -0
  100. package/esm2020/tooltip/tooltip.component.mjs +156 -0
  101. package/esm2020/tooltip/tooltip.module.mjs +28 -0
  102. package/esm2020/tree/covalent-echarts-tree.mjs +5 -0
  103. package/esm2020/tree/public_api.mjs +3 -0
  104. package/esm2020/tree/tree.component.mjs +117 -0
  105. package/esm2020/tree/tree.module.mjs +19 -0
  106. package/esm2020/treemap/covalent-echarts-treemap.mjs +5 -0
  107. package/esm2020/treemap/public_api.mjs +3 -0
  108. package/esm2020/treemap/treemap.component.mjs +149 -0
  109. package/esm2020/treemap/treemap.module.mjs +21 -0
  110. package/esm2020/wordcloud/covalent-echarts-wordcloud.mjs +5 -0
  111. package/esm2020/wordcloud/public_api.mjs +3 -0
  112. package/esm2020/wordcloud/wordcloud.component.mjs +92 -0
  113. package/esm2020/wordcloud/wordcloud.module.mjs +21 -0
  114. package/fesm2015/covalent-echarts-bar.mjs +158 -0
  115. package/fesm2015/covalent-echarts-bar.mjs.map +1 -0
  116. package/fesm2015/covalent-echarts-base.mjs +4931 -0
  117. package/fesm2015/covalent-echarts-base.mjs.map +1 -0
  118. package/fesm2015/covalent-echarts-graph.mjs +210 -0
  119. package/fesm2015/covalent-echarts-graph.mjs.map +1 -0
  120. package/fesm2015/covalent-echarts-line.mjs +182 -0
  121. package/fesm2015/covalent-echarts-line.mjs.map +1 -0
  122. package/fesm2015/covalent-echarts-map.mjs +155 -0
  123. package/fesm2015/covalent-echarts-map.mjs.map +1 -0
  124. package/fesm2015/covalent-echarts-pie.mjs +150 -0
  125. package/fesm2015/covalent-echarts-pie.mjs.map +1 -0
  126. package/fesm2015/covalent-echarts-sankey.mjs +142 -0
  127. package/fesm2015/covalent-echarts-sankey.mjs.map +1 -0
  128. package/fesm2015/covalent-echarts-scatter.mjs +169 -0
  129. package/fesm2015/covalent-echarts-scatter.mjs.map +1 -0
  130. package/fesm2015/covalent-echarts-toolbox.mjs +158 -0
  131. package/fesm2015/covalent-echarts-toolbox.mjs.map +1 -0
  132. package/fesm2015/covalent-echarts-tooltip.mjs +283 -0
  133. package/fesm2015/covalent-echarts-tooltip.mjs.map +1 -0
  134. package/fesm2015/covalent-echarts-tree.mjs +140 -0
  135. package/fesm2015/covalent-echarts-tree.mjs.map +1 -0
  136. package/fesm2015/covalent-echarts-treemap.mjs +174 -0
  137. package/fesm2015/covalent-echarts-treemap.mjs.map +1 -0
  138. package/fesm2015/covalent-echarts-wordcloud.mjs +117 -0
  139. package/fesm2015/covalent-echarts-wordcloud.mjs.map +1 -0
  140. package/fesm2015/covalent-echarts.mjs +4 -0
  141. package/fesm2015/covalent-echarts.mjs.map +1 -0
  142. package/fesm2020/covalent-echarts-bar.mjs +158 -0
  143. package/fesm2020/covalent-echarts-bar.mjs.map +1 -0
  144. package/fesm2020/covalent-echarts-base.mjs +4930 -0
  145. package/fesm2020/covalent-echarts-base.mjs.map +1 -0
  146. package/fesm2020/covalent-echarts-graph.mjs +210 -0
  147. package/fesm2020/covalent-echarts-graph.mjs.map +1 -0
  148. package/fesm2020/covalent-echarts-line.mjs +182 -0
  149. package/fesm2020/covalent-echarts-line.mjs.map +1 -0
  150. package/fesm2020/covalent-echarts-map.mjs +155 -0
  151. package/fesm2020/covalent-echarts-map.mjs.map +1 -0
  152. package/fesm2020/covalent-echarts-pie.mjs +150 -0
  153. package/fesm2020/covalent-echarts-pie.mjs.map +1 -0
  154. package/fesm2020/covalent-echarts-sankey.mjs +142 -0
  155. package/fesm2020/covalent-echarts-sankey.mjs.map +1 -0
  156. package/fesm2020/covalent-echarts-scatter.mjs +169 -0
  157. package/fesm2020/covalent-echarts-scatter.mjs.map +1 -0
  158. package/fesm2020/covalent-echarts-toolbox.mjs +163 -0
  159. package/fesm2020/covalent-echarts-toolbox.mjs.map +1 -0
  160. package/fesm2020/covalent-echarts-tooltip.mjs +283 -0
  161. package/fesm2020/covalent-echarts-tooltip.mjs.map +1 -0
  162. package/fesm2020/covalent-echarts-tree.mjs +140 -0
  163. package/fesm2020/covalent-echarts-tree.mjs.map +1 -0
  164. package/fesm2020/covalent-echarts-treemap.mjs +174 -0
  165. package/fesm2020/covalent-echarts-treemap.mjs.map +1 -0
  166. package/fesm2020/covalent-echarts-wordcloud.mjs +117 -0
  167. package/fesm2020/covalent-echarts-wordcloud.mjs.map +1 -0
  168. package/fesm2020/covalent-echarts.mjs +4 -0
  169. package/fesm2020/covalent-echarts.mjs.map +1 -0
  170. package/graph/README.md +90 -0
  171. package/graph/covalent-echarts-graph.d.ts +5 -0
  172. package/graph/graph.component.d.ts +129 -0
  173. package/graph/graph.module.d.ts +10 -0
  174. package/graph/package.json +10 -0
  175. package/graph/public_api.d.ts +2 -0
  176. package/line/README.md +78 -0
  177. package/line/covalent-echarts-line.d.ts +5 -0
  178. package/line/line.component.d.ts +86 -0
  179. package/line/line.module.d.ts +10 -0
  180. package/line/package.json +10 -0
  181. package/line/public_api.d.ts +2 -0
  182. package/map/README.md +119 -0
  183. package/map/covalent-echarts-map.d.ts +5 -0
  184. package/map/map.component.d.ts +75 -0
  185. package/map/map.module.d.ts +10 -0
  186. package/map/package.json +10 -0
  187. package/map/public_api.d.ts +2 -0
  188. package/package.json +146 -0
  189. package/pie/README.md +62 -0
  190. package/pie/covalent-echarts-pie.d.ts +5 -0
  191. package/pie/package.json +10 -0
  192. package/pie/pie.component.d.ts +64 -0
  193. package/pie/pie.module.d.ts +10 -0
  194. package/pie/public_api.d.ts +2 -0
  195. package/public_api.d.ts +1 -0
  196. package/sankey/README.md +91 -0
  197. package/sankey/covalent-echarts-sankey.d.ts +5 -0
  198. package/sankey/package.json +10 -0
  199. package/sankey/public_api.d.ts +2 -0
  200. package/sankey/sankey.component.d.ts +65 -0
  201. package/sankey/sankey.module.d.ts +10 -0
  202. package/scatter/README.md +66 -0
  203. package/scatter/covalent-echarts-scatter.d.ts +5 -0
  204. package/scatter/package.json +10 -0
  205. package/scatter/public_api.d.ts +2 -0
  206. package/scatter/scatter.component.d.ts +76 -0
  207. package/scatter/scatter.module.d.ts +10 -0
  208. package/toolbox/README.md +57 -0
  209. package/toolbox/covalent-echarts-toolbox.d.ts +5 -0
  210. package/toolbox/package.json +10 -0
  211. package/toolbox/public_api.d.ts +2 -0
  212. package/toolbox/toolbox.component.d.ts +142 -0
  213. package/toolbox/toolbox.module.d.ts +10 -0
  214. package/tooltip/README.md +116 -0
  215. package/tooltip/covalent-echarts-tooltip.d.ts +5 -0
  216. package/tooltip/package.json +10 -0
  217. package/tooltip/public_api.d.ts +3 -0
  218. package/tooltip/series-tooltip.component.d.ts +36 -0
  219. package/tooltip/tooltip.component.d.ts +49 -0
  220. package/tooltip/tooltip.module.d.ts +11 -0
  221. package/tree/README.md +60 -0
  222. package/tree/covalent-echarts-tree.d.ts +5 -0
  223. package/tree/package.json +10 -0
  224. package/tree/public_api.d.ts +2 -0
  225. package/tree/tree.component.d.ts +83 -0
  226. package/tree/tree.module.d.ts +10 -0
  227. package/treemap/README.md +185 -0
  228. package/treemap/covalent-echarts-treemap.d.ts +5 -0
  229. package/treemap/package.json +10 -0
  230. package/treemap/public_api.d.ts +2 -0
  231. package/treemap/treemap.component.d.ts +134 -0
  232. package/treemap/treemap.module.d.ts +10 -0
  233. package/wordcloud/README.md +89 -0
  234. package/wordcloud/covalent-echarts-wordcloud.d.ts +5 -0
  235. package/wordcloud/package.json +10 -0
  236. package/wordcloud/public_api.d.ts +2 -0
  237. package/wordcloud/wordcloud.component.d.ts +55 -0
  238. package/wordcloud/wordcloud.module.d.ts +10 -0
@@ -0,0 +1,459 @@
1
+ declare const _default: {
2
+ color: string[];
3
+ backgroundColor: string;
4
+ textStyle: {};
5
+ title: {
6
+ textStyle: {
7
+ color: string;
8
+ };
9
+ subtextStyle: {
10
+ color: string;
11
+ };
12
+ };
13
+ tree: {
14
+ itemStyle: {
15
+ color: string;
16
+ borderColor: string;
17
+ };
18
+ };
19
+ line: {
20
+ itemStyle: {
21
+ normal: {
22
+ borderWidth: string;
23
+ };
24
+ };
25
+ lineStyle: {
26
+ normal: {
27
+ width: string;
28
+ };
29
+ };
30
+ symbolSize: string;
31
+ symbol: string;
32
+ smooth: boolean;
33
+ };
34
+ radar: {
35
+ itemStyle: {
36
+ normal: {
37
+ borderWidth: string;
38
+ };
39
+ };
40
+ lineStyle: {
41
+ normal: {
42
+ width: string;
43
+ };
44
+ };
45
+ symbolSize: string;
46
+ symbol: string;
47
+ smooth: boolean;
48
+ };
49
+ bar: {
50
+ itemStyle: {
51
+ normal: {
52
+ barBorderWidth: number;
53
+ barBorderColor: string;
54
+ };
55
+ emphasis: {
56
+ barBorderWidth: number;
57
+ barBorderColor: string;
58
+ };
59
+ };
60
+ };
61
+ pie: {
62
+ itemStyle: {
63
+ normal: {
64
+ borderWidth: number;
65
+ borderColor: string;
66
+ };
67
+ emphasis: {
68
+ borderWidth: number;
69
+ borderColor: string;
70
+ };
71
+ };
72
+ };
73
+ scatter: {
74
+ itemStyle: {
75
+ normal: {
76
+ borderWidth: number;
77
+ borderColor: string;
78
+ };
79
+ emphasis: {
80
+ borderWidth: number;
81
+ borderColor: string;
82
+ };
83
+ };
84
+ };
85
+ boxplot: {
86
+ itemStyle: {
87
+ normal: {
88
+ borderWidth: number;
89
+ borderColor: string;
90
+ };
91
+ emphasis: {
92
+ borderWidth: number;
93
+ borderColor: string;
94
+ };
95
+ };
96
+ };
97
+ parallel: {
98
+ itemStyle: {
99
+ normal: {
100
+ borderWidth: number;
101
+ borderColor: string;
102
+ };
103
+ emphasis: {
104
+ borderWidth: number;
105
+ borderColor: string;
106
+ };
107
+ };
108
+ };
109
+ sankey: {
110
+ itemStyle: {
111
+ normal: {
112
+ borderWidth: number;
113
+ borderColor: string;
114
+ };
115
+ emphasis: {
116
+ borderWidth: number;
117
+ borderColor: string;
118
+ };
119
+ };
120
+ };
121
+ funnel: {
122
+ itemStyle: {
123
+ normal: {
124
+ borderWidth: number;
125
+ borderColor: string;
126
+ };
127
+ emphasis: {
128
+ borderWidth: number;
129
+ borderColor: string;
130
+ };
131
+ };
132
+ };
133
+ gauge: {
134
+ itemStyle: {
135
+ normal: {
136
+ borderWidth: number;
137
+ borderColor: string;
138
+ };
139
+ emphasis: {
140
+ borderWidth: number;
141
+ borderColor: string;
142
+ };
143
+ };
144
+ };
145
+ candlestick: {
146
+ itemStyle: {
147
+ normal: {
148
+ color: string;
149
+ color0: string;
150
+ borderColor: string;
151
+ borderColor0: string;
152
+ borderWidth: string;
153
+ };
154
+ };
155
+ };
156
+ graph: {
157
+ itemStyle: {
158
+ normal: {
159
+ borderWidth: number;
160
+ borderColor: string;
161
+ };
162
+ };
163
+ lineStyle: {
164
+ normal: {
165
+ width: number;
166
+ color: string;
167
+ };
168
+ };
169
+ symbolSize: string;
170
+ symbol: string;
171
+ smooth: boolean;
172
+ color: string[];
173
+ label: {
174
+ normal: {
175
+ textStyle: {
176
+ color: string;
177
+ };
178
+ };
179
+ };
180
+ };
181
+ map: {
182
+ itemStyle: {
183
+ normal: {
184
+ areaColor: string;
185
+ borderColor: string;
186
+ borderWidth: number;
187
+ };
188
+ emphasis: {
189
+ areaColor: string;
190
+ borderColor: string;
191
+ borderWidth: number;
192
+ };
193
+ };
194
+ label: {
195
+ normal: {
196
+ textStyle: {
197
+ color: string;
198
+ };
199
+ };
200
+ emphasis: {
201
+ textStyle: {
202
+ color: string;
203
+ };
204
+ };
205
+ };
206
+ };
207
+ geo: {
208
+ itemStyle: {
209
+ normal: {
210
+ areaColor: string;
211
+ borderColor: string;
212
+ borderWidth: number;
213
+ };
214
+ emphasis: {
215
+ areaColor: string;
216
+ borderColor: string;
217
+ borderWidth: number;
218
+ };
219
+ };
220
+ label: {
221
+ normal: {
222
+ textStyle: {
223
+ color: string;
224
+ };
225
+ };
226
+ emphasis: {
227
+ textStyle: {
228
+ color: string;
229
+ };
230
+ };
231
+ };
232
+ };
233
+ categoryAxis: {
234
+ axisLine: {
235
+ show: boolean;
236
+ lineStyle: {
237
+ color: string;
238
+ };
239
+ };
240
+ axisTick: {
241
+ show: boolean;
242
+ lineStyle: {
243
+ color: string;
244
+ };
245
+ };
246
+ axisLabel: {
247
+ show: boolean;
248
+ textStyle: {
249
+ color: string;
250
+ };
251
+ };
252
+ splitLine: {
253
+ show: boolean;
254
+ lineStyle: {
255
+ color: string[];
256
+ };
257
+ };
258
+ splitArea: {
259
+ show: boolean;
260
+ areaStyle: {
261
+ color: string[];
262
+ };
263
+ };
264
+ };
265
+ valueAxis: {
266
+ axisLine: {
267
+ show: boolean;
268
+ lineStyle: {
269
+ color: string;
270
+ };
271
+ };
272
+ axisTick: {
273
+ show: boolean;
274
+ lineStyle: {
275
+ color: string;
276
+ };
277
+ };
278
+ axisLabel: {
279
+ show: boolean;
280
+ textStyle: {
281
+ color: string;
282
+ };
283
+ };
284
+ splitLine: {
285
+ show: boolean;
286
+ lineStyle: {
287
+ color: string[];
288
+ };
289
+ };
290
+ splitArea: {
291
+ show: boolean;
292
+ areaStyle: {
293
+ color: string[];
294
+ };
295
+ };
296
+ };
297
+ logAxis: {
298
+ axisLine: {
299
+ show: boolean;
300
+ lineStyle: {
301
+ color: string;
302
+ };
303
+ };
304
+ axisTick: {
305
+ show: boolean;
306
+ lineStyle: {
307
+ color: string;
308
+ };
309
+ };
310
+ axisLabel: {
311
+ show: boolean;
312
+ textStyle: {
313
+ color: string;
314
+ };
315
+ };
316
+ splitLine: {
317
+ show: boolean;
318
+ lineStyle: {
319
+ color: string[];
320
+ };
321
+ };
322
+ splitArea: {
323
+ show: boolean;
324
+ areaStyle: {
325
+ color: string[];
326
+ };
327
+ };
328
+ };
329
+ timeAxis: {
330
+ axisLine: {
331
+ show: boolean;
332
+ lineStyle: {
333
+ color: string;
334
+ };
335
+ };
336
+ axisTick: {
337
+ show: boolean;
338
+ lineStyle: {
339
+ color: string;
340
+ };
341
+ };
342
+ axisLabel: {
343
+ show: boolean;
344
+ textStyle: {
345
+ color: string;
346
+ };
347
+ };
348
+ splitLine: {
349
+ show: boolean;
350
+ lineStyle: {
351
+ color: string[];
352
+ };
353
+ };
354
+ splitArea: {
355
+ show: boolean;
356
+ areaStyle: {
357
+ color: string[];
358
+ };
359
+ };
360
+ };
361
+ toolbox: {
362
+ iconStyle: {
363
+ normal: {
364
+ borderColor: string;
365
+ };
366
+ emphasis: {
367
+ borderColor: string;
368
+ };
369
+ };
370
+ };
371
+ legend: {
372
+ textStyle: {
373
+ color: string;
374
+ };
375
+ };
376
+ tooltip: {
377
+ axisPointer: {
378
+ lineStyle: {
379
+ color: string;
380
+ width: number;
381
+ };
382
+ crossStyle: {
383
+ color: string;
384
+ width: number;
385
+ };
386
+ };
387
+ };
388
+ timeline: {
389
+ lineStyle: {
390
+ color: string;
391
+ width: number;
392
+ };
393
+ itemStyle: {
394
+ normal: {
395
+ color: string;
396
+ borderWidth: number;
397
+ };
398
+ emphasis: {
399
+ color: string;
400
+ };
401
+ };
402
+ controlStyle: {
403
+ normal: {
404
+ color: string;
405
+ borderColor: string;
406
+ borderWidth: number;
407
+ };
408
+ emphasis: {
409
+ color: string;
410
+ borderColor: string;
411
+ borderWidth: number;
412
+ };
413
+ };
414
+ checkpointStyle: {
415
+ color: string;
416
+ borderColor: string;
417
+ };
418
+ label: {
419
+ normal: {
420
+ textStyle: {
421
+ color: string;
422
+ };
423
+ };
424
+ emphasis: {
425
+ textStyle: {
426
+ color: string;
427
+ };
428
+ };
429
+ };
430
+ };
431
+ visualMap: {
432
+ color: string[];
433
+ };
434
+ dataZoom: {
435
+ backgroundColor: string;
436
+ dataBackgroundColor: string;
437
+ fillerColor: string;
438
+ handleColor: string;
439
+ handleSize: string;
440
+ textStyle: {
441
+ color: string;
442
+ };
443
+ };
444
+ markPoint: {
445
+ label: {
446
+ normal: {
447
+ textStyle: {
448
+ color: string;
449
+ };
450
+ };
451
+ emphasis: {
452
+ textStyle: {
453
+ color: string;
454
+ };
455
+ };
456
+ };
457
+ };
458
+ };
459
+ export default _default;