-
Notifications
You must be signed in to change notification settings - Fork 0
/
quick-quote.config.js
73 lines (73 loc) · 1.4 KB
/
quick-quote.config.js
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
/**
* babel-plugin-quick-quote https://github.com/SCWR/babel-plugin-quick-quote#readme
* package.json config
* "scripts": {
* ...
* "generate": "babel-plugin-quick-quote",
* ...
* }
* if quickOuoteConfig is empty object, please install dependencies [echarts] before using the command [babel-plugin-quick-quote]
*/
exports.quickQuoteConfig = {
// echarts version: 4.1.0
echarts: {
// path: echarts/lib/chart
chart: [
'bar',
'boxplot',
'candlestick',
'chord',
'custom',
'effectScatter',
'funnel',
'gauge',
'graph',
'heatmap',
'line',
'lines',
'map',
'parallel',
'pictorialBar',
'pie',
'radar',
'sankey',
'scatter',
'sunburst',
'themeRiver',
'tree',
'treemap',
],
// path: echarts/lib/component
component: [
'angleAxis',
'axis',
'axisPointer',
'brush',
'calendar',
'dataset',
'dataZoom',
'dataZoomInside',
'dataZoomSelect',
'geo',
'graphic',
'grid',
'gridSimple',
'legend',
'legendScroll',
'markArea',
'markLine',
'markPoint',
'parallelAxis',
'polar',
'radiusAxis',
'singleAxis',
'timeline',
'title',
'toolbox',
'tooltip',
'visualMap',
'visualMapContinuous',
'visualMapPiecewise',
],
},
}