echarts 4.4.0 → 4.6.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.
Files changed (211) hide show
  1. package/.github/ISSUE_TEMPLATE.md +1 -1
  2. package/.github/workflows/nodejs.yml +31 -0
  3. package/CONTRIBUTING.md +2 -2
  4. package/README.md +6 -12
  5. package/dist/echarts-en.common.js +2354 -1029
  6. package/dist/echarts-en.common.min.js +1 -1
  7. package/dist/echarts-en.js +2727 -1138
  8. package/dist/echarts-en.js.map +1 -1
  9. package/dist/echarts-en.min.js +1 -1
  10. package/dist/echarts-en.simple.js +2028 -759
  11. package/dist/echarts-en.simple.min.js +1 -1
  12. package/dist/echarts.common.js +2354 -1029
  13. package/dist/echarts.common.min.js +1 -1
  14. package/dist/echarts.js +2727 -1138
  15. package/dist/echarts.js.map +1 -1
  16. package/dist/echarts.min.js +1 -1
  17. package/dist/echarts.simple.js +2028 -759
  18. package/dist/echarts.simple.min.js +1 -1
  19. package/dist/extension/dataTool.js +9 -0
  20. package/dist/extension/dataTool.js.map +1 -1
  21. package/echarts.all.js +1 -1
  22. package/lib/chart/bar/BarSeries.js +4 -1
  23. package/lib/chart/bar/BarView.js +20 -6
  24. package/lib/chart/bar/BaseBarSeries.js +5 -1
  25. package/lib/chart/candlestick/CandlestickSeries.js +1 -0
  26. package/lib/chart/candlestick/CandlestickView.js +42 -1
  27. package/lib/chart/custom.js +1 -0
  28. package/lib/chart/effectScatter/EffectScatterSeries.js +3 -1
  29. package/lib/chart/funnel/FunnelSeries.js +15 -5
  30. package/lib/chart/gauge/GaugeSeries.js +0 -9
  31. package/lib/chart/graph/GraphSeries.js +11 -4
  32. package/lib/chart/graph/GraphView.js +28 -8
  33. package/lib/chart/graph/forceHelper.js +8 -2
  34. package/lib/chart/graph/forceLayout.js +5 -2
  35. package/lib/chart/heatmap/HeatmapView.js +4 -4
  36. package/lib/chart/helper/Symbol.js +8 -0
  37. package/lib/chart/helper/createListFromArray.js +14 -8
  38. package/lib/chart/helper/whiskerBoxCommon.js +22 -16
  39. package/lib/chart/line/LineSeries.js +3 -1
  40. package/lib/chart/line/LineView.js +8 -2
  41. package/lib/chart/map/MapSeries.js +8 -1
  42. package/lib/chart/pie/PieSeries.js +27 -6
  43. package/lib/chart/pie/PieView.js +1 -1
  44. package/lib/chart/pie/labelLayout.js +102 -19
  45. package/lib/chart/pie/pieLayout.js +19 -7
  46. package/lib/chart/radar/RadarSeries.js +3 -3
  47. package/lib/chart/sankey/SankeyView.js +28 -9
  48. package/lib/chart/scatter/ScatterSeries.js +3 -1
  49. package/lib/chart/themeRiver/ThemeRiverSeries.js +3 -3
  50. package/lib/chart/tree/TreeSeries.js +15 -1
  51. package/lib/chart/tree/TreeView.js +4 -2
  52. package/lib/component/axis/AngleAxisView.js +97 -20
  53. package/lib/component/axis/AxisBuilder.js +63 -24
  54. package/lib/component/axis/CartesianAxisView.js +55 -11
  55. package/lib/component/axis/RadiusAxisView.js +36 -4
  56. package/lib/component/brush/BrushView.js +6 -0
  57. package/lib/component/brush/brushAction.js +5 -0
  58. package/lib/component/dataZoom/DataZoomModel.js +15 -1
  59. package/lib/component/dataZoom/SliderZoomView.js +4 -10
  60. package/lib/component/helper/BrushController.js +43 -25
  61. package/lib/component/legend/LegendModel.js +3 -3
  62. package/lib/component/legend/LegendView.js +17 -13
  63. package/lib/component/toolbox/ToolboxView.js +16 -7
  64. package/lib/component/toolbox/feature/MagicType.js +19 -14
  65. package/lib/coord/Axis.js +44 -12
  66. package/lib/coord/axisDefault.js +21 -2
  67. package/lib/coord/axisTickLabelBuilder.js +9 -1
  68. package/lib/coord/cartesian/Cartesian2D.js +0 -15
  69. package/lib/coord/geo/geoJSONLoader.js +1 -1
  70. package/lib/coord/polar/polarCreator.js +11 -2
  71. package/lib/coord/radar/Radar.js +3 -1
  72. package/lib/coord/radar/RadarModel.js +4 -1
  73. package/lib/data/DataDiffer.js +2 -4
  74. package/lib/data/DataDimensionInfo.js +157 -0
  75. package/lib/data/List.js +29 -23
  76. package/lib/data/Tree.js +2 -1
  77. package/lib/data/helper/completeDimensions.js +43 -32
  78. package/lib/data/helper/createDimensions.js +2 -0
  79. package/lib/data/helper/sourceHelper.js +214 -114
  80. package/lib/echarts.js +2 -2
  81. package/lib/layout/barGrid.js +136 -11
  82. package/lib/layout/barPolar.js +2 -2
  83. package/lib/model/Global.js +1 -1
  84. package/lib/model/Series.js +3 -3
  85. package/lib/model/referHelper.js +40 -12
  86. package/lib/scale/Interval.js +87 -2
  87. package/lib/scale/Log.js +9 -2
  88. package/lib/scale/helper.js +1 -43
  89. package/lib/theme/dark.js +3 -0
  90. package/lib/util/graphic.js +1 -2
  91. package/lib/util/number.js +25 -1
  92. package/lib/util/shape/sausage.js +93 -0
  93. package/lib/visual/LegendVisualProvider.js +75 -0
  94. package/lib/visual/dataColor.js +2 -12
  95. package/lib/visual/seriesColor.js +15 -7
  96. package/map/js/china.js +2 -2
  97. package/map/json/china.json +1 -1
  98. package/map/json/province/tianjin.json +1 -1
  99. package/package.json +3 -2
  100. package/src/chart/bar/BarSeries.js +5 -1
  101. package/src/chart/bar/BarView.js +24 -8
  102. package/src/chart/bar/BaseBarSeries.js +5 -1
  103. package/src/chart/candlestick/CandlestickSeries.js +2 -0
  104. package/src/chart/candlestick/CandlestickView.js +44 -1
  105. package/src/chart/custom.js +1 -0
  106. package/src/chart/effectScatter/EffectScatterSeries.js +1 -1
  107. package/src/chart/funnel/FunnelSeries.js +11 -4
  108. package/src/chart/gauge/GaugeSeries.js +0 -6
  109. package/src/chart/graph/GraphSeries.js +10 -3
  110. package/src/chart/graph/GraphView.js +26 -8
  111. package/src/chart/graph/forceHelper.js +7 -3
  112. package/src/chart/graph/forceLayout.js +6 -3
  113. package/src/chart/heatmap/HeatmapView.js +4 -4
  114. package/src/chart/helper/Symbol.js +9 -0
  115. package/src/chart/helper/createClipPathFromCoordSys.js +5 -1
  116. package/src/chart/helper/createGraphFromNodeEdge.js +1 -1
  117. package/src/chart/helper/createListFromArray.js +13 -8
  118. package/src/chart/helper/whiskerBoxCommon.js +21 -16
  119. package/src/chart/line/LineSeries.js +1 -1
  120. package/src/chart/line/LineView.js +6 -1
  121. package/src/chart/map/MapSeries.js +5 -1
  122. package/src/chart/pie/PieSeries.js +26 -5
  123. package/src/chart/pie/PieView.js +1 -1
  124. package/src/chart/pie/labelLayout.js +114 -22
  125. package/src/chart/pie/pieLayout.js +20 -7
  126. package/src/chart/radar/RadarSeries.js +5 -3
  127. package/src/chart/sankey/SankeyView.js +26 -9
  128. package/src/chart/scatter/ScatterSeries.js +1 -1
  129. package/src/chart/themeRiver/ThemeRiverSeries.js +4 -3
  130. package/src/chart/tree/TreeSeries.js +12 -1
  131. package/src/chart/tree/TreeView.js +5 -2
  132. package/src/component/axis/AngleAxisView.js +106 -19
  133. package/src/component/axis/AxisBuilder.js +78 -33
  134. package/src/component/axis/CartesianAxisView.js +58 -11
  135. package/src/component/axis/RadiusAxisView.js +37 -4
  136. package/src/component/brush/BrushView.js +6 -0
  137. package/src/component/brush/brushAction.js +6 -1
  138. package/src/component/dataZoom/DataZoomModel.js +15 -1
  139. package/src/component/dataZoom/SliderZoomView.js +4 -9
  140. package/src/component/helper/BrushController.js +50 -28
  141. package/src/component/legend/LegendModel.js +3 -3
  142. package/src/component/legend/LegendView.js +18 -12
  143. package/src/component/toolbox/ToolboxView.js +18 -5
  144. package/src/component/toolbox/feature/MagicType.js +18 -13
  145. package/src/coord/Axis.js +48 -13
  146. package/src/coord/axisDefault.js +25 -1
  147. package/src/coord/axisTickLabelBuilder.js +10 -0
  148. package/src/coord/cartesian/Cartesian2D.js +0 -13
  149. package/src/coord/geo/geoJSONLoader.js +2 -2
  150. package/src/coord/polar/polarCreator.js +16 -3
  151. package/src/coord/radar/Radar.js +3 -1
  152. package/src/coord/radar/RadarModel.js +5 -2
  153. package/src/data/DataDiffer.js +1 -4
  154. package/src/data/DataDimensionInfo.js +135 -0
  155. package/src/data/Graph.js +1 -1
  156. package/src/data/List.js +33 -20
  157. package/src/data/Tree.js +3 -1
  158. package/src/data/helper/completeDimensions.js +49 -30
  159. package/src/data/helper/createDimensions.js +2 -0
  160. package/src/data/helper/sourceHelper.js +216 -124
  161. package/src/echarts.js +2 -2
  162. package/src/layout/barGrid.js +136 -13
  163. package/src/layout/barPolar.js +3 -2
  164. package/src/model/Global.js +1 -1
  165. package/src/model/Series.js +3 -3
  166. package/src/model/referHelper.js +34 -11
  167. package/src/scale/Interval.js +84 -4
  168. package/src/scale/Log.js +9 -2
  169. package/src/scale/helper.js +1 -39
  170. package/src/theme/dark.js +3 -0
  171. package/src/util/graphic.js +1 -2
  172. package/src/util/number.js +22 -2
  173. package/src/util/shape/sausage.js +93 -0
  174. package/src/visual/LegendVisualProvider.js +55 -0
  175. package/src/visual/dataColor.js +0 -13
  176. package/src/visual/seriesColor.js +13 -7
  177. package/theme/azul.js +163 -0
  178. package/theme/bee-inspired.js +178 -0
  179. package/theme/blue.js +178 -0
  180. package/theme/caravan.js +178 -0
  181. package/theme/carp.js +163 -0
  182. package/theme/cool.js +180 -0
  183. package/theme/dark-blue.js +168 -0
  184. package/theme/dark-bold.js +168 -0
  185. package/theme/dark-digerati.js +168 -0
  186. package/theme/dark-fresh-cut.js +168 -0
  187. package/theme/dark-mushroom.js +168 -0
  188. package/theme/dark.js +69 -62
  189. package/theme/eduardo.js +178 -0
  190. package/theme/forest.js +163 -0
  191. package/theme/fresh-cut.js +163 -0
  192. package/theme/fruit.js +178 -0
  193. package/theme/gray.js +220 -0
  194. package/theme/green.js +222 -0
  195. package/theme/helianthus.js +263 -0
  196. package/theme/infographic.js +72 -57
  197. package/theme/inspired.js +163 -0
  198. package/theme/jazz.js +163 -0
  199. package/theme/london.js +163 -0
  200. package/theme/macarons.js +80 -57
  201. package/theme/macarons2.js +251 -0
  202. package/theme/mint.js +155 -0
  203. package/theme/red-velvet.js +163 -0
  204. package/theme/red.js +225 -0
  205. package/theme/roma.js +55 -22
  206. package/theme/royal.js +163 -0
  207. package/theme/sakura.js +140 -0
  208. package/theme/shine.js +52 -45
  209. package/theme/tech-blue.js +180 -0
  210. package/theme/vintage.js +37 -23
  211. package/.travis.yml +0 -16
@@ -0,0 +1,251 @@
1
+ /*
2
+ * Licensed to the Apache Software Foundation (ASF) under one
3
+ * or more contributor license agreements. See the NOTICE file
4
+ * distributed with this work for additional information
5
+ * regarding copyright ownership. The ASF licenses this file
6
+ * to you under the Apache License, Version 2.0 (the
7
+ * "License"); you may not use this file except in compliance
8
+ * with the License. You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing,
13
+ * software distributed under the License is distributed on an
14
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
+ * KIND, either express or implied. See the License for the
16
+ * specific language governing permissions and limitations
17
+ * under the License.
18
+ */
19
+
20
+ (function(root, factory) {
21
+ if (typeof define === 'function' && define.amd) {
22
+ // AMD. Register as an anonymous module.
23
+ define(['exports', 'echarts'], factory);
24
+ } else if (
25
+ typeof exports === 'object' &&
26
+ typeof exports.nodeName !== 'string'
27
+ ) {
28
+ // CommonJS
29
+ factory(exports, require('echarts'));
30
+ } else {
31
+ // Browser globals
32
+ factory({}, root.echarts);
33
+ }
34
+ })(this, function(exports, echarts) {
35
+ var log = function(msg) {
36
+ if (typeof console !== 'undefined') {
37
+ console && console.error && console.error(msg);
38
+ }
39
+ };
40
+ if (!echarts) {
41
+ log('ECharts is not Loaded');
42
+ return;
43
+ }
44
+
45
+ var colorPalette = [
46
+ '#ed9678',
47
+ '#e7dac9',
48
+ '#cb8e85',
49
+ '#f3f39d',
50
+ '#c8e49c',
51
+ '#f16d7a',
52
+ '#f3d999',
53
+ '#d3758f',
54
+ '#dcc392',
55
+ '#2e4783',
56
+ '#82b6e9',
57
+ '#ff6347',
58
+ '#a092f1',
59
+ '#0a915d',
60
+ '#eaf889',
61
+ '#6699FF',
62
+ '#ff6666',
63
+ '#3cb371',
64
+ '#d5b158',
65
+ '#38b6b6'
66
+ ];
67
+
68
+ var theme = {
69
+ color: colorPalette,
70
+
71
+ title: {
72
+ textStyle: {
73
+ fontWeight: 'normal',
74
+ color: '#cb8e85'
75
+ }
76
+ },
77
+
78
+ dataRange: {
79
+ color: ['#cb8e85', '#e7dac9'], //颜色
80
+ //text:['高','低'], // 文本,默认为数值文本
81
+ textStyle: {
82
+ color: '#333' // 值域文字颜色
83
+ }
84
+ },
85
+
86
+ bar: {
87
+ barMinHeight: 0, // 最小高度改为0
88
+ // barWidth: null, // 默认自适应
89
+ barGap: '30%', // 柱间距离,默认为柱形宽度的30%,可设固定值
90
+ barCategoryGap: '20%', // 类目间柱形距离,默认为类目间距的20%,可设固定值
91
+ itemStyle: {
92
+ normal: {
93
+ // color: '各异',
94
+ barBorderColor: '#fff', // 柱条边线
95
+ barBorderRadius: 0, // 柱条边线圆角,单位px,默认为0
96
+ barBorderWidth: 1, // 柱条边线线宽,单位px,默认为1
97
+ label: {
98
+ show: false
99
+ // position: 默认自适应,水平布局为'top',垂直布局为'right',可选为
100
+ // 'inside'|'left'|'right'|'top'|'bottom'
101
+ // textStyle: null // 默认使用全局文本样式,详见TEXTSTYLE
102
+ }
103
+ },
104
+ emphasis: {
105
+ // color: '各异',
106
+ barBorderColor: 'rgba(0,0,0,0)', // 柱条边线
107
+ barBorderRadius: 0, // 柱条边线圆角,单位px,默认为0
108
+ barBorderWidth: 1, // 柱条边线线宽,单位px,默认为1
109
+ label: {
110
+ show: false
111
+ // position: 默认自适应,水平布局为'top',垂直布局为'right',可选为
112
+ // 'inside'|'left'|'right'|'top'|'bottom'
113
+ // textStyle: null // 默认使用全局文本样式,详见TEXTSTYLE
114
+ }
115
+ }
116
+ }
117
+ },
118
+
119
+ line: {
120
+ itemStyle: {
121
+ normal: {
122
+ // color: 各异,
123
+ label: {
124
+ show: false
125
+ // position: 默认自适应,水平布局为'top',垂直布局为'right',可选为
126
+ // 'inside'|'left'|'right'|'top'|'bottom'
127
+ // textStyle: null // 默认使用全局文本样式,详见TEXTSTYLE
128
+ },
129
+ lineStyle: {
130
+ width: 2,
131
+ type: 'solid',
132
+ shadowColor: 'rgba(0,0,0,0)', //默认透明
133
+ shadowBlur: 5,
134
+ shadowOffsetX: 3,
135
+ shadowOffsetY: 3
136
+ }
137
+ },
138
+ emphasis: {
139
+ // color: 各异,
140
+ label: {
141
+ show: false
142
+ // position: 默认自适应,水平布局为'top',垂直布局为'right',可选为
143
+ // 'inside'|'left'|'right'|'top'|'bottom'
144
+ // textStyle: null // 默认使用全局文本样式,详见TEXTSTYLE
145
+ }
146
+ }
147
+ },
148
+ //smooth : false,
149
+ //symbol: null, // 拐点图形类型
150
+ symbolSize: 2, // 拐点图形大小
151
+ //symbolRotate : null, // 拐点图形旋转控制
152
+ showAllSymbol: false // 标志图形默认只有主轴显示(随主轴标签间隔隐藏策略)
153
+ },
154
+
155
+ candlestick: {
156
+ itemStyle: {
157
+ color: '#fe9778',
158
+ color0: '#e7dac9'
159
+ },
160
+ lineStyle: {
161
+ width: 1,
162
+ color: '#f78766',
163
+ color0: '#f1ccb8'
164
+ },
165
+ areaStyle: {
166
+ color: '#e7dac9',
167
+ color0: '#c8e49c'
168
+ }
169
+ },
170
+
171
+ // 饼图默认参数
172
+ pie: {
173
+ center: ['50%', '50%'], // 默认全局居中
174
+ radius: [0, '75%'],
175
+ clockWise: false, // 默认逆时针
176
+ startAngle: 90,
177
+ minAngle: 0, // 最小角度改为0
178
+ selectedOffset: 10, // 选中是扇区偏移量
179
+ itemStyle: {
180
+ normal: {
181
+ // color: 各异,
182
+ borderColor: '#fff',
183
+ borderWidth: 1,
184
+ label: {
185
+ show: true,
186
+ position: 'outer',
187
+ textStyle: { color: '#1b1b1b' },
188
+ lineStyle: { color: '#1b1b1b' }
189
+ // textStyle: null // 默认使用全局文本样式,详见TEXTSTYLE
190
+ },
191
+ labelLine: {
192
+ show: true,
193
+ length: 20,
194
+ lineStyle: {
195
+ // color: 各异,
196
+ width: 1,
197
+ type: 'solid'
198
+ }
199
+ }
200
+ }
201
+ }
202
+ },
203
+
204
+ map: {
205
+ itemStyle: {
206
+ color: '#ddd',
207
+ borderColor: '#fff',
208
+ borderWidth: 1
209
+ },
210
+ areaStyle: {
211
+ color: '#f3f39d'
212
+ },
213
+ label: {
214
+ show: false,
215
+ color: 'rgba(139,69,19,1)'
216
+ },
217
+ showLegendSymbol: true
218
+ },
219
+
220
+ graph: {
221
+ itemStyle: {
222
+ color: '#d87a80'
223
+ },
224
+ linkStyle: {
225
+ strokeColor: '#a17e6e'
226
+ },
227
+ nodeStyle: {
228
+ brushType: 'both',
229
+ strokeColor: '#a17e6e'
230
+ },
231
+ label: {
232
+ show: false
233
+ }
234
+ },
235
+
236
+ gauge: {
237
+ axisLine: {
238
+ lineStyle: {
239
+ color: [
240
+ [0.2, '#ed9678'],
241
+ [0.8, '#e7dac9'],
242
+ [1, '#cb8e85']
243
+ ],
244
+ width: 8
245
+ }
246
+ }
247
+ }
248
+ };
249
+
250
+ echarts.registerTheme('macarons2', theme);
251
+ });
package/theme/mint.js ADDED
@@ -0,0 +1,155 @@
1
+ /*
2
+ * Licensed to the Apache Software Foundation (ASF) under one
3
+ * or more contributor license agreements. See the NOTICE file
4
+ * distributed with this work for additional information
5
+ * regarding copyright ownership. The ASF licenses this file
6
+ * to you under the Apache License, Version 2.0 (the
7
+ * "License"); you may not use this file except in compliance
8
+ * with the License. You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing,
13
+ * software distributed under the License is distributed on an
14
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
+ * KIND, either express or implied. See the License for the
16
+ * specific language governing permissions and limitations
17
+ * under the License.
18
+ */
19
+
20
+ (function(root, factory) {
21
+ if (typeof define === 'function' && define.amd) {
22
+ // AMD. Register as an anonymous module.
23
+ define(['exports', 'echarts'], factory);
24
+ } else if (
25
+ typeof exports === 'object' &&
26
+ typeof exports.nodeName !== 'string'
27
+ ) {
28
+ // CommonJS
29
+ factory(exports, require('echarts'));
30
+ } else {
31
+ // Browser globals
32
+ factory({}, root.echarts);
33
+ }
34
+ })(this, function(exports, echarts) {
35
+ var log = function(msg) {
36
+ if (typeof console !== 'undefined') {
37
+ console && console.error && console.error(msg);
38
+ }
39
+ };
40
+ if (!echarts) {
41
+ log('ECharts is not Loaded');
42
+ return;
43
+ }
44
+
45
+ var colorPalette = [
46
+ '#8aedd5',
47
+ '#93bc9e',
48
+ '#cef1db',
49
+ '#7fe579',
50
+ '#a6d7c2',
51
+ '#bef0bb',
52
+ '#99e2vb',
53
+ '#94f8a8',
54
+ '#7de5b8',
55
+ '#4dfb70'
56
+ ];
57
+
58
+ var theme = {
59
+ color: colorPalette,
60
+
61
+ title: {
62
+ textStyle: {
63
+ fontWeight: 'normal',
64
+ color: '#8aedd5'
65
+ }
66
+ },
67
+
68
+ toolbox: {
69
+ color: ['#8aedd5', '#8aedd5', '#8aedd5', '#8aedd5']
70
+ },
71
+
72
+ tooltip: {
73
+ backgroundColor: 'rgba(0,0,0,0.5)',
74
+ axisPointer: {
75
+ // Axis indicator, coordinate trigger effective
76
+ type: 'line', // The default is a straight line: 'line' | 'shadow'
77
+ lineStyle: {
78
+ // Straight line indicator style settings
79
+ color: '#8aedd5',
80
+ type: 'dashed'
81
+ },
82
+ crossStyle: {
83
+ color: '#8aedd5'
84
+ },
85
+ shadowStyle: {
86
+ // Shadow indicator style settings
87
+ color: 'rgba(200,200,200,0.3)'
88
+ }
89
+ }
90
+ },
91
+
92
+ // Area scaling controller
93
+ dataZoom: {
94
+ dataBackgroundColor: '#eee', // Data background color
95
+ fillerColor: 'rgba(64,136,41,0.2)', // Fill the color
96
+ handleColor: '#408829' // Handle color
97
+ },
98
+
99
+ dataRange: {
100
+ color: ['#93bc92', '#bef0bb']
101
+ },
102
+
103
+ candlestick: {
104
+ itemStyle: {
105
+ color: '#8aedd5',
106
+ color0: '#7fe579'
107
+ },
108
+ lineStyle: {
109
+ width: 1,
110
+ color: '#8aedd5',
111
+ color0: '#7fe579'
112
+ },
113
+ areaStyle: {
114
+ color: '#8aedd5',
115
+ color0: '#93bc9e'
116
+ }
117
+ },
118
+
119
+ graph: {
120
+ itemStyle: {
121
+ color: '#8aedd5'
122
+ },
123
+ linkStyle: {
124
+ color: '#93bc9e'
125
+ }
126
+ },
127
+
128
+ map: {
129
+ itemStyle: {
130
+ color: '#8aedd5'
131
+ },
132
+ areaStyle: {
133
+ color: '#93bc9e'
134
+ },
135
+ label: {
136
+ color: '#cef1db'
137
+ }
138
+ },
139
+
140
+ gauge: {
141
+ axisLine: {
142
+ lineStyle: {
143
+ color: [
144
+ [0.2, '#93bc9e'],
145
+ [0.8, '#8aedd5'],
146
+ [1, '#a6d7c2']
147
+ ],
148
+ width: 8
149
+ }
150
+ }
151
+ }
152
+ };
153
+
154
+ echarts.registerTheme('mint', theme);
155
+ });
@@ -0,0 +1,163 @@
1
+ /*
2
+ * Licensed to the Apache Software Foundation (ASF) under one
3
+ * or more contributor license agreements. See the NOTICE file
4
+ * distributed with this work for additional information
5
+ * regarding copyright ownership. The ASF licenses this file
6
+ * to you under the Apache License, Version 2.0 (the
7
+ * "License"); you may not use this file except in compliance
8
+ * with the License. You may obtain a copy of the License at
9
+ *
10
+ * http://www.apache.org/licenses/LICENSE-2.0
11
+ *
12
+ * Unless required by applicable law or agreed to in writing,
13
+ * software distributed under the License is distributed on an
14
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15
+ * KIND, either express or implied. See the License for the
16
+ * specific language governing permissions and limitations
17
+ * under the License.
18
+ */
19
+
20
+ (function(root, factory) {
21
+ if (typeof define === 'function' && define.amd) {
22
+ // AMD. Register as an anonymous module.
23
+ define(['exports', 'echarts'], factory);
24
+ } else if (
25
+ typeof exports === 'object' &&
26
+ typeof exports.nodeName !== 'string'
27
+ ) {
28
+ // CommonJS
29
+ factory(exports, require('echarts'));
30
+ } else {
31
+ // Browser globals
32
+ factory({}, root.echarts);
33
+ }
34
+ })(this, function(exports, echarts) {
35
+ var log = function(msg) {
36
+ if (typeof console !== 'undefined') {
37
+ console && console.error && console.error(msg);
38
+ }
39
+ };
40
+ if (!echarts) {
41
+ log('ECharts is not Loaded');
42
+ return;
43
+ }
44
+
45
+ var colorPalette = [
46
+ '#8b1a2d',
47
+ '#a7314b',
48
+ '#e6004c',
49
+ '#ff8066',
50
+ '#8e5c4e',
51
+ '#ff1a66',
52
+ '#d6c582',
53
+ '#f0d4af'
54
+ ];
55
+
56
+ var theme = {
57
+ color: colorPalette,
58
+
59
+ title: {
60
+ textStyle: {
61
+ fontWeight: 'normal',
62
+ color: '#8b1a2d'
63
+ }
64
+ },
65
+
66
+ visualMap: {
67
+ color: ['#8b1a2d', '#a7314b']
68
+ },
69
+
70
+ toolbox: {
71
+ color: ['#8b1a2d', '#8b1a2d', '#8b1a2d', '#8b1a2d']
72
+ },
73
+
74
+ tooltip: {
75
+ backgroundColor: 'rgba(0,0,0,0.5)',
76
+ axisPointer: {
77
+ // Axis indicator, coordinate trigger effective
78
+ type: 'line', // The default is a straight line: 'line' | 'shadow'
79
+ lineStyle: {
80
+ // Straight line indicator style settings
81
+ color: '#8b1a2d',
82
+ type: 'dashed'
83
+ },
84
+ crossStyle: {
85
+ color: '#8b1a2d'
86
+ },
87
+ shadowStyle: {
88
+ // Shadow indicator style settings
89
+ color: 'rgba(200,200,200,0.3)'
90
+ }
91
+ }
92
+ },
93
+
94
+ // Area scaling controller
95
+ dataZoom: {
96
+ dataBackgroundColor: '#eee', // Data background color
97
+ fillerColor: 'rgba(200,200,200,0.2)', // Fill the color
98
+ handleColor: '#8b1a2d' // Handle color
99
+ },
100
+
101
+ timeline: {
102
+ lineStyle: {
103
+ color: '#8b1a2d'
104
+ },
105
+ controlStyle: {
106
+ color: '#8b1a2d',
107
+ borderColor: '#8b1a2d'
108
+ }
109
+ },
110
+
111
+ candlestick: {
112
+ itemStyle: {
113
+ color: '#a7314b',
114
+ color0: '#d6c582'
115
+ },
116
+ lineStyle: {
117
+ width: 1,
118
+ color: '#8e5c4e',
119
+ color0: '#f0d4af'
120
+ },
121
+ areaStyle: {
122
+ color: '#8b1a2d',
123
+ color0: '#ff8066'
124
+ }
125
+ },
126
+
127
+ map: {
128
+ itemStyle: {
129
+ color: '#8b1a2d'
130
+ },
131
+ areaStyle: {
132
+ color: '#ff8066'
133
+ },
134
+ label: {
135
+ color: '#c12e34'
136
+ }
137
+ },
138
+
139
+ graph: {
140
+ itemStyle: {
141
+ color: '#ff8066'
142
+ },
143
+ linkStyle: {
144
+ color: '#8b1a2d'
145
+ }
146
+ },
147
+
148
+ gauge: {
149
+ axisLine: {
150
+ lineStyle: {
151
+ color: [
152
+ [0.2, '#a7314b'],
153
+ [0.8, '#8b1a2d'],
154
+ [1, '#8e5c4e']
155
+ ],
156
+ width: 8
157
+ }
158
+ }
159
+ }
160
+ };
161
+
162
+ echarts.registerTheme('red-velvet', theme);
163
+ });