forked from antvis/G2Plot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
251 lines (250 loc) · 4.75 KB
/
gatsby-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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
const { repository } = require('./package.json');
module.exports = {
plugins: [
{
resolve: '@antv/gatsby-theme-antv',
options: {
GATrackingId: `UA-148148901-2`,
},
},
],
// Customize your site metadata:
siteMetadata: {
title: 'G2Plot',
description: 'A collection of charts made with the Grammar of Graphics',
siteUrl: 'https://g2plot.antv.vision',
githubUrl: repository.url,
navs: [
{
slug: 'docs/manual',
title: {
zh: '使用文档',
en: 'docs',
},
},
{
slug: 'examples',
title: {
zh: '图表演示',
en: 'Examples',
},
},
],
docs: [
{
slug: 'manual/plots',
title: {
zh: '图表',
en: 'Charts',
},
order: 3,
},
{
slug: 'manual/mini-charts',
title: {
zh: '迷你图表',
en: 'sparkline',
},
order: 3,
},
{
slug: 'manual/advanced',
title: {
zh: '进阶',
en: 'Advanced',
},
order: 4,
},
],
examples: [
{
slug: 'line',
icon: 'line', // 图表名可以去 https://antv.alipay.com/zh-cn/g2/3.x/demo/index.html 打开控制台查看图标类名
title: {
zh: '折线图',
en: 'Line Charts',
},
},
{
slug: 'step-line',
icon: 'kagi',
title: {
zh: '阶梯折线图',
en: 'Step Charts',
},
},
{
slug: 'area',
icon: 'area',
title: {
zh: '面积图',
en: 'Area Charts',
},
},
{
slug: 'column',
icon: 'column',
title: {
zh: '柱状图',
en: 'Column Charts',
},
},
{
slug: 'bar',
icon: 'bar',
title: {
zh: '条形图',
en: 'Bar Charts',
},
},
{
slug: 'pie',
icon: 'pie',
title: {
zh: '饼图',
en: 'Pie Charts',
},
},
{
slug: 'rose',
icon: 'rose',
title: {
zh: '玫瑰图',
en: 'Rose Charts',
},
},
{
slug: 'scatter',
icon: 'point',
title: {
zh: '散点图',
en: 'Scatter Charts',
},
},
{
slug: 'bubble',
icon: 'point',
title: {
zh: '气泡图',
en: 'Bubble Charts',
},
},
{
slug: 'radar',
icon: 'radar',
title: {
zh: '雷达图',
en: 'radar',
},
},
{
slug: 'heatmap',
icon: 'heatmap',
title: {
zh: '热力图',
en: 'heatmap',
},
},
{
slug: 'funnel',
icon: 'other',
title: {
zh: '漏斗图',
en: 'Funnel Charts',
},
},
{
slug: 'treemap',
icon: 'facet',
title: {
zh: '树图',
en: 'Treemap Charts',
},
},
{
slug: 'liquid',
icon: 'other',
title: {
zh: '水波图',
en: 'Liquid Charts',
},
},
{
slug: 'gauge',
icon: 'gauge',
title: {
zh: '仪表盘',
en: 'Gauge Charts',
},
},
{
slug: 'bullet',
icon: 'other',
title: {
zh: '子弹图',
en: 'Bullet Chart',
},
},
{
slug: 'calendar',
icon: 'other',
title: {
zh: '日历图',
en: 'Calendar Chart',
},
},
{
slug: 'bullet',
icon: 'other',
title: {
zh: '子弹图',
en: 'Bullet Charts',
},
},
{
slug: 'sparkline',
icon: 'other',
title: {
zh: '迷你图表',
en: 'Sparkline',
},
},
{
slug: 'word-cloud',
icon: 'other',
title: {
zh: '词云图',
en: 'WordCloud',
},
},
{
slug: 'combo',
icon: 'other',
title: {
zh: '混合图表',
en: 'Combo Charts',
},
},
{
slug: 'general',
icon: 'other',
title: {
zh: '图表通用配置',
en: 'General Configration of Charts',
},
},
{
slug: 'advanced',
icon: 'other',
title: {
zh: '高级功能尝鲜',
en: 'advanced',
},
},
],
docsearchOptions: {
apiKey: '0d19588d7661a81faa8b75f6ade80321',
indexName: 'antv_g2plot',
},
},
};