@opendata-ai/openchart-engine 6.28.6 → 7.0.2
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/README.md +1 -0
- package/dist/index.d.ts +8 -11
- package/dist/index.js +12307 -11338
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/__test-fixtures__/specs.ts +3 -0
- package/src/__tests__/__snapshots__/compile-snapshot.test.ts.snap +452 -377
- package/src/__tests__/axes.test.ts +75 -0
- package/src/__tests__/compile-chart.test.ts +304 -0
- package/src/__tests__/dimensions.test.ts +224 -0
- package/src/__tests__/legend.test.ts +44 -3
- package/src/annotations/__tests__/compute.test.ts +111 -0
- package/src/annotations/__tests__/resolve-text.test.ts +288 -0
- package/src/annotations/constants.ts +20 -0
- package/src/annotations/resolve-text.ts +161 -7
- package/src/charts/bar/compute.ts +24 -0
- package/src/charts/bar/labels.ts +1 -0
- package/src/charts/column/compute.ts +33 -1
- package/src/charts/column/labels.ts +1 -0
- package/src/charts/dot/labels.ts +1 -0
- package/src/charts/line/__tests__/compute.test.ts +153 -3
- package/src/charts/line/area.ts +111 -23
- package/src/charts/line/compute.ts +40 -10
- package/src/charts/line/index.ts +34 -7
- package/src/charts/line/labels.ts +29 -0
- package/src/charts/pie/labels.ts +1 -0
- package/src/compile/layer.ts +498 -0
- package/src/compile.ts +221 -586
- package/src/compiler/__tests__/sparkline-defaults.test.ts +153 -0
- package/src/compiler/normalize.ts +12 -1
- package/src/compiler/sparkline-defaults.ts +138 -0
- package/src/compiler/types.ts +8 -0
- package/src/endpoint-labels/__tests__/compute.test.ts +438 -0
- package/src/endpoint-labels/compute.ts +417 -0
- package/src/endpoint-labels/constants.ts +54 -0
- package/src/endpoint-labels/format.ts +30 -0
- package/src/endpoint-labels/predict.ts +108 -0
- package/src/graphs/compile-graph.ts +1 -0
- package/src/layout/axes.ts +27 -2
- package/src/layout/dimensions.ts +282 -34
- package/src/layout/metrics.ts +118 -0
- package/src/layout/scales.ts +41 -4
- package/src/legend/__tests__/suppression.test.ts +294 -0
- package/src/legend/compute.ts +50 -40
- package/src/legend/suppression.ts +204 -0
- package/src/sankey/compile-sankey.ts +2 -0
|
@@ -36,10 +36,10 @@ exports[`compileChart snapshot (Step 7 oracle) > clipped-domain bar chart (data
|
|
|
36
36
|
"animation": undefined,
|
|
37
37
|
"annotations": [],
|
|
38
38
|
"area": {
|
|
39
|
-
"height":
|
|
39
|
+
"height": 296.1,
|
|
40
40
|
"width": 541.73,
|
|
41
41
|
"x": 35.269999999999996,
|
|
42
|
-
"y":
|
|
42
|
+
"y": 60.9,
|
|
43
43
|
},
|
|
44
44
|
"axes": {
|
|
45
45
|
"x": {
|
|
@@ -54,10 +54,10 @@ exports[`compileChart snapshot (Step 7 oracle) > clipped-domain bar chart (data
|
|
|
54
54
|
"labelOverlap": undefined,
|
|
55
55
|
"labelPadding": undefined,
|
|
56
56
|
"labelStyle": {
|
|
57
|
-
"fill": "#
|
|
58
|
-
"fontFamily": "Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
57
|
+
"fill": "#09090b",
|
|
58
|
+
"fontFamily": ""Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
59
59
|
"fontSize": 13,
|
|
60
|
-
"fontWeight":
|
|
60
|
+
"fontWeight": 510,
|
|
61
61
|
"lineHeight": 1.3,
|
|
62
62
|
},
|
|
63
63
|
"offset": undefined,
|
|
@@ -68,14 +68,15 @@ exports[`compileChart snapshot (Step 7 oracle) > clipped-domain bar chart (data
|
|
|
68
68
|
},
|
|
69
69
|
"tickAngle": undefined,
|
|
70
70
|
"tickLabelStyle": {
|
|
71
|
-
"fill": "#
|
|
72
|
-
"fontFamily": "Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
71
|
+
"fill": "#71717a",
|
|
72
|
+
"fontFamily": ""Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
73
73
|
"fontSize": 11,
|
|
74
74
|
"fontVariant": "tabular-nums",
|
|
75
75
|
"fontWeight": 400,
|
|
76
76
|
"lineHeight": 1.2,
|
|
77
77
|
},
|
|
78
78
|
"tickMarks": undefined,
|
|
79
|
+
"tickPosition": "gutter",
|
|
79
80
|
"ticks": [
|
|
80
81
|
{
|
|
81
82
|
"label": "0",
|
|
@@ -104,15 +105,15 @@ exports[`compileChart snapshot (Step 7 oracle) > clipped-domain bar chart (data
|
|
|
104
105
|
"gridlines": [
|
|
105
106
|
{
|
|
106
107
|
"major": true,
|
|
107
|
-
"position": 297.
|
|
108
|
+
"position": 297.33805970149257,
|
|
108
109
|
},
|
|
109
110
|
{
|
|
110
111
|
"major": true,
|
|
111
|
-
"position": 208.
|
|
112
|
+
"position": 208.95000000000002,
|
|
112
113
|
},
|
|
113
114
|
{
|
|
114
115
|
"major": true,
|
|
115
|
-
"position":
|
|
116
|
+
"position": 120.56194029850745,
|
|
116
117
|
},
|
|
117
118
|
],
|
|
118
119
|
"label": undefined,
|
|
@@ -120,42 +121,43 @@ exports[`compileChart snapshot (Step 7 oracle) > clipped-domain bar chart (data
|
|
|
120
121
|
"labelOverlap": undefined,
|
|
121
122
|
"labelPadding": undefined,
|
|
122
123
|
"labelStyle": {
|
|
123
|
-
"fill": "#
|
|
124
|
-
"fontFamily": "Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
124
|
+
"fill": "#09090b",
|
|
125
|
+
"fontFamily": ""Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
125
126
|
"fontSize": 13,
|
|
126
|
-
"fontWeight":
|
|
127
|
+
"fontWeight": 510,
|
|
127
128
|
"lineHeight": 1.3,
|
|
128
129
|
},
|
|
129
130
|
"offset": undefined,
|
|
130
131
|
"orient": undefined,
|
|
131
132
|
"start": {
|
|
132
133
|
"x": 35.269999999999996,
|
|
133
|
-
"y":
|
|
134
|
+
"y": 60.9,
|
|
134
135
|
},
|
|
135
136
|
"tickAngle": undefined,
|
|
136
137
|
"tickLabelStyle": {
|
|
137
|
-
"fill": "#
|
|
138
|
-
"fontFamily": "Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
138
|
+
"fill": "#71717a",
|
|
139
|
+
"fontFamily": ""Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
139
140
|
"fontSize": 11,
|
|
140
141
|
"fontVariant": "tabular-nums",
|
|
141
142
|
"fontWeight": 400,
|
|
142
143
|
"lineHeight": 1.2,
|
|
143
144
|
},
|
|
144
145
|
"tickMarks": undefined,
|
|
146
|
+
"tickPosition": "gutter",
|
|
145
147
|
"ticks": [
|
|
146
148
|
{
|
|
147
149
|
"label": "A",
|
|
148
|
-
"position": 297.
|
|
150
|
+
"position": 297.33805970149257,
|
|
149
151
|
"value": "A",
|
|
150
152
|
},
|
|
151
153
|
{
|
|
152
154
|
"label": "B",
|
|
153
|
-
"position": 208.
|
|
155
|
+
"position": 208.95000000000002,
|
|
154
156
|
"value": "B",
|
|
155
157
|
},
|
|
156
158
|
{
|
|
157
159
|
"label": "C",
|
|
158
|
-
"position":
|
|
160
|
+
"position": 120.56194029850745,
|
|
159
161
|
"value": "C",
|
|
160
162
|
},
|
|
161
163
|
],
|
|
@@ -168,18 +170,18 @@ exports[`compileChart snapshot (Step 7 oracle) > clipped-domain bar chart (data
|
|
|
168
170
|
"maxWidth": 561,
|
|
169
171
|
"style": {
|
|
170
172
|
"dominantBaseline": "hanging",
|
|
171
|
-
"fill": "#
|
|
172
|
-
"fontFamily": "Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
173
|
-
"fontSize":
|
|
174
|
-
"fontWeight":
|
|
175
|
-
"lineHeight": 1.
|
|
173
|
+
"fill": "#09090b",
|
|
174
|
+
"fontFamily": ""Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
175
|
+
"fontSize": 26,
|
|
176
|
+
"fontWeight": 590,
|
|
177
|
+
"lineHeight": 1.15,
|
|
176
178
|
"textAnchor": "start",
|
|
177
179
|
},
|
|
178
180
|
"text": "Clipped Values",
|
|
179
181
|
"x": 17,
|
|
180
182
|
"y": 17,
|
|
181
183
|
},
|
|
182
|
-
"topHeight":
|
|
184
|
+
"topHeight": 37.9,
|
|
183
185
|
},
|
|
184
186
|
"crosshair": false,
|
|
185
187
|
"dimensions": {
|
|
@@ -197,15 +199,17 @@ exports[`compileChart snapshot (Step 7 oracle) > clipped-domain bar chart (data
|
|
|
197
199
|
"entries": [],
|
|
198
200
|
"entryGap": 16,
|
|
199
201
|
"labelStyle": {
|
|
200
|
-
"fill": "#
|
|
201
|
-
"fontFamily": "Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
202
|
+
"fill": "#09090b",
|
|
203
|
+
"fontFamily": ""Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
202
204
|
"fontSize": 11,
|
|
203
205
|
"fontWeight": 400,
|
|
204
206
|
"lineHeight": 1.3,
|
|
205
207
|
},
|
|
206
208
|
"position": "top",
|
|
209
|
+
"swatchChipFill": "rgba(0,0,0,0.04)",
|
|
207
210
|
"swatchGap": 6,
|
|
208
211
|
"swatchSize": 12,
|
|
212
|
+
"type": "categorical",
|
|
209
213
|
},
|
|
210
214
|
"marks": [
|
|
211
215
|
{
|
|
@@ -217,13 +221,13 @@ exports[`compileChart snapshot (Step 7 oracle) > clipped-domain bar chart (data
|
|
|
217
221
|
"name": "A",
|
|
218
222
|
"value": 10,
|
|
219
223
|
},
|
|
220
|
-
"fill": "#
|
|
221
|
-
"height": 57.
|
|
224
|
+
"fill": "#06b6d4",
|
|
225
|
+
"height": 57.45223880597016,
|
|
222
226
|
"label": {
|
|
223
227
|
"connector": undefined,
|
|
224
228
|
"style": {
|
|
225
229
|
"dominantBaseline": "central",
|
|
226
|
-
"fill": "#
|
|
230
|
+
"fill": "#3c3c3c",
|
|
227
231
|
"fontFamily": "system-ui, -apple-system, sans-serif",
|
|
228
232
|
"fontSize": 11,
|
|
229
233
|
"fontWeight": 600,
|
|
@@ -233,13 +237,13 @@ exports[`compileChart snapshot (Step 7 oracle) > clipped-domain bar chart (data
|
|
|
233
237
|
"text": "10",
|
|
234
238
|
"visible": true,
|
|
235
239
|
"x": 137.616,
|
|
236
|
-
"y": 297.
|
|
240
|
+
"y": 297.33805970149257,
|
|
237
241
|
},
|
|
238
242
|
"orient": "horizontal",
|
|
239
243
|
"type": "rect",
|
|
240
244
|
"width": 108.34600000000002,
|
|
241
245
|
"x": 35.269999999999996,
|
|
242
|
-
"y": 268.
|
|
246
|
+
"y": 268.6119402985075,
|
|
243
247
|
},
|
|
244
248
|
{
|
|
245
249
|
"aria": {
|
|
@@ -250,13 +254,13 @@ exports[`compileChart snapshot (Step 7 oracle) > clipped-domain bar chart (data
|
|
|
250
254
|
"name": "B",
|
|
251
255
|
"value": 25,
|
|
252
256
|
},
|
|
253
|
-
"fill": "#
|
|
254
|
-
"height": 57.
|
|
257
|
+
"fill": "#06b6d4",
|
|
258
|
+
"height": 57.45223880597016,
|
|
255
259
|
"label": {
|
|
256
260
|
"connector": undefined,
|
|
257
261
|
"style": {
|
|
258
262
|
"dominantBaseline": "central",
|
|
259
|
-
"fill": "#
|
|
263
|
+
"fill": "#3c3c3c",
|
|
260
264
|
"fontFamily": "system-ui, -apple-system, sans-serif",
|
|
261
265
|
"fontSize": 11,
|
|
262
266
|
"fontWeight": 600,
|
|
@@ -266,13 +270,13 @@ exports[`compileChart snapshot (Step 7 oracle) > clipped-domain bar chart (data
|
|
|
266
270
|
"text": "25",
|
|
267
271
|
"visible": true,
|
|
268
272
|
"x": 300.135,
|
|
269
|
-
"y": 208.
|
|
273
|
+
"y": 208.95000000000002,
|
|
270
274
|
},
|
|
271
275
|
"orient": "horizontal",
|
|
272
276
|
"type": "rect",
|
|
273
277
|
"width": 270.865,
|
|
274
278
|
"x": 35.269999999999996,
|
|
275
|
-
"y":
|
|
279
|
+
"y": 180.22388059701493,
|
|
276
280
|
},
|
|
277
281
|
{
|
|
278
282
|
"aria": {
|
|
@@ -283,13 +287,13 @@ exports[`compileChart snapshot (Step 7 oracle) > clipped-domain bar chart (data
|
|
|
283
287
|
"name": "C",
|
|
284
288
|
"value": 40,
|
|
285
289
|
},
|
|
286
|
-
"fill": "#
|
|
287
|
-
"height": 57.
|
|
290
|
+
"fill": "#06b6d4",
|
|
291
|
+
"height": 57.45223880597016,
|
|
288
292
|
"label": {
|
|
289
293
|
"connector": undefined,
|
|
290
294
|
"style": {
|
|
291
295
|
"dominantBaseline": "central",
|
|
292
|
-
"fill": "#
|
|
296
|
+
"fill": "#3c3c3c",
|
|
293
297
|
"fontFamily": "system-ui, -apple-system, sans-serif",
|
|
294
298
|
"fontSize": 11,
|
|
295
299
|
"fontWeight": 600,
|
|
@@ -299,65 +303,71 @@ exports[`compileChart snapshot (Step 7 oracle) > clipped-domain bar chart (data
|
|
|
299
303
|
"text": "40",
|
|
300
304
|
"visible": true,
|
|
301
305
|
"x": 462.654,
|
|
302
|
-
"y":
|
|
306
|
+
"y": 120.56194029850745,
|
|
303
307
|
},
|
|
304
308
|
"orient": "horizontal",
|
|
305
309
|
"type": "rect",
|
|
306
310
|
"width": 433.384,
|
|
307
311
|
"x": 35.269999999999996,
|
|
308
|
-
"y":
|
|
312
|
+
"y": 91.83582089552237,
|
|
309
313
|
},
|
|
310
314
|
],
|
|
315
|
+
"metrics": undefined,
|
|
311
316
|
"theme": {
|
|
312
|
-
"borderRadius":
|
|
317
|
+
"borderRadius": 2,
|
|
313
318
|
"chrome": {
|
|
314
319
|
"byline": {
|
|
315
|
-
"color": "#
|
|
316
|
-
"fontSize":
|
|
320
|
+
"color": "#71717a",
|
|
321
|
+
"fontSize": 11,
|
|
317
322
|
"fontWeight": 400,
|
|
318
|
-
"lineHeight": 1.
|
|
323
|
+
"lineHeight": 1.4,
|
|
324
|
+
},
|
|
325
|
+
"eyebrow": {
|
|
326
|
+
"color": "#06b6d4",
|
|
327
|
+
"fontSize": 11,
|
|
328
|
+
"fontWeight": 510,
|
|
329
|
+
"lineHeight": 1.4,
|
|
319
330
|
},
|
|
320
331
|
"footer": {
|
|
321
|
-
"color": "#
|
|
322
|
-
"fontSize":
|
|
332
|
+
"color": "#71717a",
|
|
333
|
+
"fontSize": 11,
|
|
323
334
|
"fontWeight": 400,
|
|
324
|
-
"lineHeight": 1.
|
|
335
|
+
"lineHeight": 1.4,
|
|
325
336
|
},
|
|
326
337
|
"source": {
|
|
327
|
-
"color": "#
|
|
328
|
-
"fontSize":
|
|
338
|
+
"color": "#71717a",
|
|
339
|
+
"fontSize": 11,
|
|
329
340
|
"fontWeight": 400,
|
|
330
|
-
"lineHeight": 1.
|
|
341
|
+
"lineHeight": 1.4,
|
|
331
342
|
},
|
|
332
343
|
"subtitle": {
|
|
333
|
-
"color": "#
|
|
334
|
-
"fontSize":
|
|
344
|
+
"color": "#71717a",
|
|
345
|
+
"fontSize": 14,
|
|
335
346
|
"fontWeight": 400,
|
|
336
|
-
"lineHeight": 1.
|
|
347
|
+
"lineHeight": 1.45,
|
|
337
348
|
},
|
|
338
349
|
"title": {
|
|
339
|
-
"color": "#
|
|
340
|
-
"fontSize":
|
|
341
|
-
"fontWeight":
|
|
342
|
-
"lineHeight": 1.
|
|
350
|
+
"color": "#09090b",
|
|
351
|
+
"fontSize": 26,
|
|
352
|
+
"fontWeight": 590,
|
|
353
|
+
"lineHeight": 1.15,
|
|
343
354
|
},
|
|
344
355
|
},
|
|
345
356
|
"colors": {
|
|
346
357
|
"annotationFill": "rgba(0,0,0,0.04)",
|
|
347
|
-
"annotationText": "#
|
|
348
|
-
"axis": "#
|
|
358
|
+
"annotationText": "#71717a",
|
|
359
|
+
"axis": "#71717a",
|
|
349
360
|
"background": "#ffffff",
|
|
350
361
|
"categorical": [
|
|
351
|
-
"#
|
|
352
|
-
"#
|
|
353
|
-
"#
|
|
354
|
-
"#
|
|
355
|
-
"#
|
|
356
|
-
"#
|
|
357
|
-
"#
|
|
358
|
-
"#
|
|
359
|
-
"#
|
|
360
|
-
"#858078",
|
|
362
|
+
"#06b6d4",
|
|
363
|
+
"#eb7289",
|
|
364
|
+
"#3bb974",
|
|
365
|
+
"#ad87ed",
|
|
366
|
+
"#e69c3a",
|
|
367
|
+
"#4ba3f7",
|
|
368
|
+
"#eb8656",
|
|
369
|
+
"#8494fa",
|
|
370
|
+
"#00b9c3",
|
|
361
371
|
],
|
|
362
372
|
"diverging": {
|
|
363
373
|
"brownTeal": [
|
|
@@ -379,7 +389,9 @@ exports[`compileChart snapshot (Step 7 oracle) > clipped-domain bar chart (data
|
|
|
379
389
|
"#2166ac",
|
|
380
390
|
],
|
|
381
391
|
},
|
|
382
|
-
"gridline": "
|
|
392
|
+
"gridline": "rgba(0,0,0,0.06)",
|
|
393
|
+
"negative": "#dc2626",
|
|
394
|
+
"positive": "#16a34a",
|
|
383
395
|
"sequential": {
|
|
384
396
|
"blue": [
|
|
385
397
|
"#deebf7",
|
|
@@ -423,23 +435,23 @@ exports[`compileChart snapshot (Step 7 oracle) > clipped-domain bar chart (data
|
|
|
423
435
|
"#004450",
|
|
424
436
|
],
|
|
425
437
|
},
|
|
426
|
-
"text": "#
|
|
438
|
+
"text": "#09090b",
|
|
427
439
|
},
|
|
428
440
|
"fonts": {
|
|
429
|
-
"family": "Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
441
|
+
"family": ""Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
430
442
|
"mono": ""JetBrains Mono", "Fira Code", "Cascadia Code", monospace",
|
|
431
443
|
"sizes": {
|
|
432
444
|
"axisTick": 11,
|
|
433
445
|
"body": 13,
|
|
434
446
|
"small": 11,
|
|
435
|
-
"subtitle":
|
|
436
|
-
"title":
|
|
447
|
+
"subtitle": 14,
|
|
448
|
+
"title": 26,
|
|
437
449
|
},
|
|
438
450
|
"weights": {
|
|
439
451
|
"bold": 700,
|
|
440
|
-
"medium":
|
|
452
|
+
"medium": 510,
|
|
441
453
|
"normal": 400,
|
|
442
|
-
"semibold":
|
|
454
|
+
"semibold": 590,
|
|
443
455
|
},
|
|
444
456
|
},
|
|
445
457
|
"isDark": false,
|
|
@@ -457,7 +469,7 @@ exports[`compileChart snapshot (Step 7 oracle) > clipped-domain bar chart (data
|
|
|
457
469
|
{
|
|
458
470
|
"fields": [
|
|
459
471
|
{
|
|
460
|
-
"color": "#
|
|
472
|
+
"color": "#06b6d4",
|
|
461
473
|
"label": "name",
|
|
462
474
|
"value": "A",
|
|
463
475
|
},
|
|
@@ -474,7 +486,7 @@ exports[`compileChart snapshot (Step 7 oracle) > clipped-domain bar chart (data
|
|
|
474
486
|
{
|
|
475
487
|
"fields": [
|
|
476
488
|
{
|
|
477
|
-
"color": "#
|
|
489
|
+
"color": "#06b6d4",
|
|
478
490
|
"label": "name",
|
|
479
491
|
"value": "B",
|
|
480
492
|
},
|
|
@@ -491,7 +503,7 @@ exports[`compileChart snapshot (Step 7 oracle) > clipped-domain bar chart (data
|
|
|
491
503
|
{
|
|
492
504
|
"fields": [
|
|
493
505
|
{
|
|
494
|
-
"color": "#
|
|
506
|
+
"color": "#06b6d4",
|
|
495
507
|
"label": "name",
|
|
496
508
|
"value": "C",
|
|
497
509
|
},
|
|
@@ -565,55 +577,55 @@ exports[`compileChart snapshot (Step 7 oracle) > legend-heavy multi-series line
|
|
|
565
577
|
"animation": undefined,
|
|
566
578
|
"annotations": [],
|
|
567
579
|
"area": {
|
|
568
|
-
"height":
|
|
569
|
-
"width":
|
|
570
|
-
"x":
|
|
571
|
-
"y":
|
|
580
|
+
"height": 305.4,
|
|
581
|
+
"width": 631.899,
|
|
582
|
+
"x": 26,
|
|
583
|
+
"y": 105.2,
|
|
572
584
|
},
|
|
573
585
|
"axes": {
|
|
574
586
|
"x": undefined,
|
|
575
587
|
"y": {
|
|
576
|
-
"domainLine":
|
|
588
|
+
"domainLine": false,
|
|
577
589
|
"end": {
|
|
578
|
-
"x":
|
|
579
|
-
"y": 410.
|
|
590
|
+
"x": 26,
|
|
591
|
+
"y": 410.59999999999997,
|
|
580
592
|
},
|
|
581
593
|
"gridlines": [
|
|
582
594
|
{
|
|
583
595
|
"major": true,
|
|
584
|
-
"position": 410.
|
|
596
|
+
"position": 410.59999999999997,
|
|
585
597
|
},
|
|
586
598
|
{
|
|
587
599
|
"major": true,
|
|
588
|
-
"position":
|
|
600
|
+
"position": 372.42499999999995,
|
|
589
601
|
},
|
|
590
602
|
{
|
|
591
603
|
"major": true,
|
|
592
|
-
"position":
|
|
604
|
+
"position": 334.25,
|
|
593
605
|
},
|
|
594
606
|
{
|
|
595
607
|
"major": true,
|
|
596
|
-
"position":
|
|
608
|
+
"position": 296.075,
|
|
597
609
|
},
|
|
598
610
|
{
|
|
599
611
|
"major": true,
|
|
600
|
-
"position":
|
|
612
|
+
"position": 257.9,
|
|
601
613
|
},
|
|
602
614
|
{
|
|
603
615
|
"major": true,
|
|
604
|
-
"position":
|
|
616
|
+
"position": 219.725,
|
|
605
617
|
},
|
|
606
618
|
{
|
|
607
619
|
"major": true,
|
|
608
|
-
"position":
|
|
620
|
+
"position": 181.55,
|
|
609
621
|
},
|
|
610
622
|
{
|
|
611
623
|
"major": true,
|
|
612
|
-
"position":
|
|
624
|
+
"position": 143.375,
|
|
613
625
|
},
|
|
614
626
|
{
|
|
615
627
|
"major": true,
|
|
616
|
-
"position":
|
|
628
|
+
"position": 105.2,
|
|
617
629
|
},
|
|
618
630
|
],
|
|
619
631
|
"label": undefined,
|
|
@@ -621,72 +633,73 @@ exports[`compileChart snapshot (Step 7 oracle) > legend-heavy multi-series line
|
|
|
621
633
|
"labelOverlap": undefined,
|
|
622
634
|
"labelPadding": undefined,
|
|
623
635
|
"labelStyle": {
|
|
624
|
-
"fill": "#
|
|
625
|
-
"fontFamily": "Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
636
|
+
"fill": "#09090b",
|
|
637
|
+
"fontFamily": ""Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
626
638
|
"fontSize": 13,
|
|
627
|
-
"fontWeight":
|
|
639
|
+
"fontWeight": 510,
|
|
628
640
|
"lineHeight": 1.3,
|
|
629
641
|
},
|
|
630
642
|
"offset": undefined,
|
|
631
643
|
"orient": undefined,
|
|
632
644
|
"start": {
|
|
633
|
-
"x":
|
|
634
|
-
"y":
|
|
645
|
+
"x": 26,
|
|
646
|
+
"y": 105.2,
|
|
635
647
|
},
|
|
636
648
|
"tickAngle": undefined,
|
|
637
649
|
"tickLabelStyle": {
|
|
638
|
-
"fill": "#
|
|
639
|
-
"fontFamily": "Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
650
|
+
"fill": "#71717a",
|
|
651
|
+
"fontFamily": ""Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
640
652
|
"fontSize": 11,
|
|
641
653
|
"fontVariant": "tabular-nums",
|
|
642
654
|
"fontWeight": 400,
|
|
643
655
|
"lineHeight": 1.2,
|
|
644
656
|
},
|
|
645
|
-
"tickMarks":
|
|
657
|
+
"tickMarks": false,
|
|
658
|
+
"tickPosition": "inline",
|
|
646
659
|
"ticks": [
|
|
647
660
|
{
|
|
648
661
|
"label": "0",
|
|
649
|
-
"position": 410.
|
|
662
|
+
"position": 410.59999999999997,
|
|
650
663
|
"value": 0,
|
|
651
664
|
},
|
|
652
665
|
{
|
|
653
666
|
"label": "5",
|
|
654
|
-
"position":
|
|
667
|
+
"position": 372.42499999999995,
|
|
655
668
|
"value": 5,
|
|
656
669
|
},
|
|
657
670
|
{
|
|
658
671
|
"label": "10",
|
|
659
|
-
"position":
|
|
672
|
+
"position": 334.25,
|
|
660
673
|
"value": 10,
|
|
661
674
|
},
|
|
662
675
|
{
|
|
663
676
|
"label": "15",
|
|
664
|
-
"position":
|
|
677
|
+
"position": 296.075,
|
|
665
678
|
"value": 15,
|
|
666
679
|
},
|
|
667
680
|
{
|
|
668
681
|
"label": "20",
|
|
669
|
-
"position":
|
|
682
|
+
"position": 257.9,
|
|
670
683
|
"value": 20,
|
|
671
684
|
},
|
|
672
685
|
{
|
|
673
686
|
"label": "25",
|
|
674
|
-
"position":
|
|
687
|
+
"position": 219.725,
|
|
675
688
|
"value": 25,
|
|
676
689
|
},
|
|
677
690
|
{
|
|
678
691
|
"label": "30",
|
|
679
|
-
"position":
|
|
692
|
+
"position": 181.55,
|
|
680
693
|
"value": 30,
|
|
681
694
|
},
|
|
682
695
|
{
|
|
683
696
|
"label": "35",
|
|
684
|
-
"position":
|
|
697
|
+
"position": 143.375,
|
|
685
698
|
"value": 35,
|
|
686
699
|
},
|
|
687
700
|
{
|
|
688
701
|
"label": "40",
|
|
689
|
-
"position":
|
|
702
|
+
"position": 105.2,
|
|
690
703
|
"value": 40,
|
|
691
704
|
},
|
|
692
705
|
],
|
|
@@ -694,16 +707,16 @@ exports[`compileChart snapshot (Step 7 oracle) > legend-heavy multi-series line
|
|
|
694
707
|
},
|
|
695
708
|
},
|
|
696
709
|
"chrome": {
|
|
697
|
-
"bottomHeight": 43.
|
|
710
|
+
"bottomHeight": 43.4,
|
|
698
711
|
"source": {
|
|
699
712
|
"maxWidth": 755,
|
|
700
713
|
"style": {
|
|
701
714
|
"dominantBaseline": "hanging",
|
|
702
|
-
"fill": "#
|
|
703
|
-
"fontFamily": "Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
704
|
-
"fontSize":
|
|
715
|
+
"fill": "#71717a",
|
|
716
|
+
"fontFamily": ""Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
717
|
+
"fontSize": 11,
|
|
705
718
|
"fontWeight": 400,
|
|
706
|
-
"lineHeight": 1.
|
|
719
|
+
"lineHeight": 1.4,
|
|
707
720
|
"textAnchor": "start",
|
|
708
721
|
},
|
|
709
722
|
"text": "World Bank",
|
|
@@ -714,84 +727,190 @@ exports[`compileChart snapshot (Step 7 oracle) > legend-heavy multi-series line
|
|
|
714
727
|
"maxWidth": 755,
|
|
715
728
|
"style": {
|
|
716
729
|
"dominantBaseline": "hanging",
|
|
717
|
-
"fill": "#
|
|
718
|
-
"fontFamily": "Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
719
|
-
"fontSize":
|
|
730
|
+
"fill": "#71717a",
|
|
731
|
+
"fontFamily": ""Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
732
|
+
"fontSize": 14,
|
|
720
733
|
"fontWeight": 400,
|
|
721
|
-
"lineHeight": 1.
|
|
734
|
+
"lineHeight": 1.45,
|
|
722
735
|
"textAnchor": "start",
|
|
723
736
|
},
|
|
724
737
|
"text": "Four-country comparison",
|
|
725
738
|
"x": 20,
|
|
726
|
-
"y":
|
|
739
|
+
"y": 53.9,
|
|
727
740
|
},
|
|
728
741
|
"title": {
|
|
729
742
|
"maxWidth": 755,
|
|
730
743
|
"style": {
|
|
731
744
|
"dominantBaseline": "hanging",
|
|
732
|
-
"fill": "#
|
|
733
|
-
"fontFamily": "Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
734
|
-
"fontSize":
|
|
735
|
-
"fontWeight":
|
|
736
|
-
"lineHeight": 1.
|
|
745
|
+
"fill": "#09090b",
|
|
746
|
+
"fontFamily": ""Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
747
|
+
"fontSize": 26,
|
|
748
|
+
"fontWeight": 590,
|
|
749
|
+
"lineHeight": 1.15,
|
|
737
750
|
"textAnchor": "start",
|
|
738
751
|
},
|
|
739
752
|
"text": "GDP Growth",
|
|
740
753
|
"x": 20,
|
|
741
754
|
"y": 20,
|
|
742
755
|
},
|
|
743
|
-
"topHeight":
|
|
756
|
+
"topHeight": 62.2,
|
|
744
757
|
},
|
|
745
|
-
"crosshair":
|
|
758
|
+
"crosshair": true,
|
|
746
759
|
"dimensions": {
|
|
747
760
|
"height": 500,
|
|
748
761
|
"width": 800,
|
|
749
762
|
},
|
|
750
763
|
"display": "full",
|
|
764
|
+
"endpointLabels": {
|
|
765
|
+
"bounds": {
|
|
766
|
+
"height": 305.4,
|
|
767
|
+
"width": 45.561,
|
|
768
|
+
"x": 675.899,
|
|
769
|
+
"y": 105.2,
|
|
770
|
+
},
|
|
771
|
+
"entries": [
|
|
772
|
+
{
|
|
773
|
+
"color": "#06b6d4",
|
|
774
|
+
"dataY": 105.2,
|
|
775
|
+
"labelLines": [
|
|
776
|
+
"US",
|
|
777
|
+
],
|
|
778
|
+
"labelY": 105.2,
|
|
779
|
+
"marker": {
|
|
780
|
+
"fill": "#ffffff",
|
|
781
|
+
"radius": 4,
|
|
782
|
+
"stroke": "#06b6d4",
|
|
783
|
+
"strokeWidth": 2,
|
|
784
|
+
"x": 657.899,
|
|
785
|
+
"y": 105.2,
|
|
786
|
+
},
|
|
787
|
+
"seriesKey": "US",
|
|
788
|
+
"showLeader": false,
|
|
789
|
+
"value": "40",
|
|
790
|
+
},
|
|
791
|
+
{
|
|
792
|
+
"color": "#eb7289",
|
|
793
|
+
"dataY": 143.375,
|
|
794
|
+
"labelLines": [
|
|
795
|
+
"UK",
|
|
796
|
+
],
|
|
797
|
+
"labelY": 139.95,
|
|
798
|
+
"marker": {
|
|
799
|
+
"fill": "#ffffff",
|
|
800
|
+
"radius": 4,
|
|
801
|
+
"stroke": "#eb7289",
|
|
802
|
+
"strokeWidth": 2,
|
|
803
|
+
"x": 657.899,
|
|
804
|
+
"y": 143.375,
|
|
805
|
+
},
|
|
806
|
+
"seriesKey": "UK",
|
|
807
|
+
"showLeader": false,
|
|
808
|
+
"value": "35",
|
|
809
|
+
},
|
|
810
|
+
{
|
|
811
|
+
"color": "#3bb974",
|
|
812
|
+
"dataY": 242.62999999999997,
|
|
813
|
+
"labelLines": [
|
|
814
|
+
"FR",
|
|
815
|
+
],
|
|
816
|
+
"labelY": 236.12999999999997,
|
|
817
|
+
"marker": {
|
|
818
|
+
"fill": "#ffffff",
|
|
819
|
+
"radius": 4,
|
|
820
|
+
"stroke": "#3bb974",
|
|
821
|
+
"strokeWidth": 2,
|
|
822
|
+
"x": 657.899,
|
|
823
|
+
"y": 242.62999999999997,
|
|
824
|
+
},
|
|
825
|
+
"seriesKey": "FR",
|
|
826
|
+
"showLeader": false,
|
|
827
|
+
"value": "22",
|
|
828
|
+
},
|
|
829
|
+
{
|
|
830
|
+
"color": "#ad87ed",
|
|
831
|
+
"dataY": 196.82,
|
|
832
|
+
"labelLines": [
|
|
833
|
+
"DE",
|
|
834
|
+
],
|
|
835
|
+
"labelY": 190.32,
|
|
836
|
+
"marker": {
|
|
837
|
+
"fill": "#ffffff",
|
|
838
|
+
"radius": 4,
|
|
839
|
+
"stroke": "#ad87ed",
|
|
840
|
+
"strokeWidth": 2,
|
|
841
|
+
"x": 657.899,
|
|
842
|
+
"y": 196.82,
|
|
843
|
+
},
|
|
844
|
+
"seriesKey": "DE",
|
|
845
|
+
"showLeader": false,
|
|
846
|
+
"value": "28",
|
|
847
|
+
},
|
|
848
|
+
],
|
|
849
|
+
"gap": 8,
|
|
850
|
+
"labelStyle": {
|
|
851
|
+
"fill": "#09090b",
|
|
852
|
+
"fontFamily": ""Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
853
|
+
"fontSize": 13,
|
|
854
|
+
"fontWeight": 600,
|
|
855
|
+
"lineHeight": 1.25,
|
|
856
|
+
},
|
|
857
|
+
"swatchChipFill": "rgba(0,0,0,0.04)",
|
|
858
|
+
"swatchSize": 18,
|
|
859
|
+
"valueGap": 4,
|
|
860
|
+
"valueStyle": {
|
|
861
|
+
"fill": "#71717a",
|
|
862
|
+
"fontFamily": ""Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
863
|
+
"fontSize": 12,
|
|
864
|
+
"fontWeight": 400,
|
|
865
|
+
"lineHeight": 1.25,
|
|
866
|
+
},
|
|
867
|
+
},
|
|
751
868
|
"legend": {
|
|
752
869
|
"bounds": {
|
|
753
870
|
"height": 85.2,
|
|
754
871
|
"width": 46.54,
|
|
755
|
-
"x":
|
|
756
|
-
"y":
|
|
872
|
+
"x": 665.899,
|
|
873
|
+
"y": 105.2,
|
|
757
874
|
},
|
|
758
875
|
"entries": [
|
|
759
876
|
{
|
|
760
877
|
"active": true,
|
|
761
|
-
"color": "#
|
|
878
|
+
"color": "#06b6d4",
|
|
762
879
|
"label": "US",
|
|
763
880
|
"shape": "line",
|
|
764
881
|
},
|
|
765
882
|
{
|
|
766
883
|
"active": true,
|
|
767
|
-
"color": "#
|
|
884
|
+
"color": "#eb7289",
|
|
768
885
|
"label": "UK",
|
|
769
886
|
"shape": "line",
|
|
770
887
|
},
|
|
771
888
|
{
|
|
772
889
|
"active": true,
|
|
773
|
-
"color": "#
|
|
890
|
+
"color": "#3bb974",
|
|
774
891
|
"label": "FR",
|
|
775
892
|
"shape": "line",
|
|
776
893
|
},
|
|
777
894
|
{
|
|
778
895
|
"active": true,
|
|
779
|
-
"color": "#
|
|
896
|
+
"color": "#ad87ed",
|
|
780
897
|
"label": "DE",
|
|
781
898
|
"shape": "line",
|
|
782
899
|
},
|
|
783
900
|
],
|
|
784
901
|
"entryGap": 4,
|
|
785
902
|
"labelStyle": {
|
|
786
|
-
"fill": "#
|
|
787
|
-
"fontFamily": "Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
903
|
+
"fill": "#09090b",
|
|
904
|
+
"fontFamily": ""Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
788
905
|
"fontSize": 11,
|
|
789
906
|
"fontWeight": 400,
|
|
790
907
|
"lineHeight": 1.3,
|
|
791
908
|
},
|
|
792
909
|
"position": "right",
|
|
910
|
+
"swatchChipFill": "rgba(0,0,0,0.04)",
|
|
793
911
|
"swatchGap": 6,
|
|
794
912
|
"swatchSize": 12,
|
|
913
|
+
"type": "categorical",
|
|
795
914
|
},
|
|
796
915
|
"marks": [
|
|
797
916
|
{
|
|
@@ -820,7 +939,7 @@ exports[`compileChart snapshot (Step 7 oracle) > legend-heavy multi-series line
|
|
|
820
939
|
"tooltip": {
|
|
821
940
|
"fields": [
|
|
822
941
|
{
|
|
823
|
-
"color": "#
|
|
942
|
+
"color": "#06b6d4",
|
|
824
943
|
"label": "country",
|
|
825
944
|
"value": "US",
|
|
826
945
|
},
|
|
@@ -836,8 +955,8 @@ exports[`compileChart snapshot (Step 7 oracle) > legend-heavy multi-series line
|
|
|
836
955
|
],
|
|
837
956
|
"title": "2020",
|
|
838
957
|
},
|
|
839
|
-
"x":
|
|
840
|
-
"y":
|
|
958
|
+
"x": 47,
|
|
959
|
+
"y": 334.25,
|
|
841
960
|
},
|
|
842
961
|
{
|
|
843
962
|
"datum": {
|
|
@@ -848,7 +967,7 @@ exports[`compileChart snapshot (Step 7 oracle) > legend-heavy multi-series line
|
|
|
848
967
|
"tooltip": {
|
|
849
968
|
"fields": [
|
|
850
969
|
{
|
|
851
|
-
"color": "#
|
|
970
|
+
"color": "#06b6d4",
|
|
852
971
|
"label": "country",
|
|
853
972
|
"value": "US",
|
|
854
973
|
},
|
|
@@ -864,40 +983,24 @@ exports[`compileChart snapshot (Step 7 oracle) > legend-heavy multi-series line
|
|
|
864
983
|
],
|
|
865
984
|
"title": "2021",
|
|
866
985
|
},
|
|
867
|
-
"x":
|
|
868
|
-
"y":
|
|
986
|
+
"x": 657.899,
|
|
987
|
+
"y": 105.2,
|
|
869
988
|
},
|
|
870
989
|
],
|
|
871
|
-
"label": {
|
|
872
|
-
"connector": undefined,
|
|
873
|
-
"style": {
|
|
874
|
-
"dominantBaseline": "central",
|
|
875
|
-
"fill": "#1b7fa3",
|
|
876
|
-
"fontFamily": "system-ui, -apple-system, sans-serif",
|
|
877
|
-
"fontSize": 11,
|
|
878
|
-
"fontWeight": 600,
|
|
879
|
-
"lineHeight": 1.2,
|
|
880
|
-
"textAnchor": "start",
|
|
881
|
-
},
|
|
882
|
-
"text": "US",
|
|
883
|
-
"visible": true,
|
|
884
|
-
"x": 710.293,
|
|
885
|
-
"y": 81,
|
|
886
|
-
},
|
|
887
990
|
"opacity": undefined,
|
|
888
|
-
"path": "
|
|
991
|
+
"path": "M47,334.25L657.899,105.2",
|
|
889
992
|
"points": [
|
|
890
993
|
{
|
|
891
|
-
"x":
|
|
892
|
-
"y":
|
|
994
|
+
"x": 47,
|
|
995
|
+
"y": 334.25,
|
|
893
996
|
},
|
|
894
997
|
{
|
|
895
|
-
"x":
|
|
896
|
-
"y":
|
|
998
|
+
"x": 657.899,
|
|
999
|
+
"y": 105.2,
|
|
897
1000
|
},
|
|
898
1001
|
],
|
|
899
1002
|
"seriesKey": "US",
|
|
900
|
-
"stroke": "#
|
|
1003
|
+
"stroke": "#06b6d4",
|
|
901
1004
|
"strokeDasharray": undefined,
|
|
902
1005
|
"strokeWidth": 1.5,
|
|
903
1006
|
"type": "line",
|
|
@@ -928,7 +1031,7 @@ exports[`compileChart snapshot (Step 7 oracle) > legend-heavy multi-series line
|
|
|
928
1031
|
"tooltip": {
|
|
929
1032
|
"fields": [
|
|
930
1033
|
{
|
|
931
|
-
"color": "#
|
|
1034
|
+
"color": "#eb7289",
|
|
932
1035
|
"label": "country",
|
|
933
1036
|
"value": "UK",
|
|
934
1037
|
},
|
|
@@ -944,8 +1047,8 @@ exports[`compileChart snapshot (Step 7 oracle) > legend-heavy multi-series line
|
|
|
944
1047
|
],
|
|
945
1048
|
"title": "2020",
|
|
946
1049
|
},
|
|
947
|
-
"x":
|
|
948
|
-
"y":
|
|
1050
|
+
"x": 47,
|
|
1051
|
+
"y": 296.075,
|
|
949
1052
|
},
|
|
950
1053
|
{
|
|
951
1054
|
"datum": {
|
|
@@ -956,7 +1059,7 @@ exports[`compileChart snapshot (Step 7 oracle) > legend-heavy multi-series line
|
|
|
956
1059
|
"tooltip": {
|
|
957
1060
|
"fields": [
|
|
958
1061
|
{
|
|
959
|
-
"color": "#
|
|
1062
|
+
"color": "#eb7289",
|
|
960
1063
|
"label": "country",
|
|
961
1064
|
"value": "UK",
|
|
962
1065
|
},
|
|
@@ -972,40 +1075,24 @@ exports[`compileChart snapshot (Step 7 oracle) > legend-heavy multi-series line
|
|
|
972
1075
|
],
|
|
973
1076
|
"title": "2021",
|
|
974
1077
|
},
|
|
975
|
-
"x":
|
|
976
|
-
"y":
|
|
1078
|
+
"x": 657.899,
|
|
1079
|
+
"y": 143.375,
|
|
977
1080
|
},
|
|
978
1081
|
],
|
|
979
|
-
"label": {
|
|
980
|
-
"connector": undefined,
|
|
981
|
-
"style": {
|
|
982
|
-
"dominantBaseline": "central",
|
|
983
|
-
"fill": "#c44e52",
|
|
984
|
-
"fontFamily": "system-ui, -apple-system, sans-serif",
|
|
985
|
-
"fontSize": 11,
|
|
986
|
-
"fontWeight": 600,
|
|
987
|
-
"lineHeight": 1.2,
|
|
988
|
-
"textAnchor": "start",
|
|
989
|
-
},
|
|
990
|
-
"text": "UK",
|
|
991
|
-
"visible": true,
|
|
992
|
-
"x": 710.293,
|
|
993
|
-
"y": 121.35,
|
|
994
|
-
},
|
|
995
1082
|
"opacity": undefined,
|
|
996
|
-
"path": "
|
|
1083
|
+
"path": "M47,296.075L657.899,143.375",
|
|
997
1084
|
"points": [
|
|
998
1085
|
{
|
|
999
|
-
"x":
|
|
1000
|
-
"y":
|
|
1086
|
+
"x": 47,
|
|
1087
|
+
"y": 296.075,
|
|
1001
1088
|
},
|
|
1002
1089
|
{
|
|
1003
|
-
"x":
|
|
1004
|
-
"y":
|
|
1090
|
+
"x": 657.899,
|
|
1091
|
+
"y": 143.375,
|
|
1005
1092
|
},
|
|
1006
1093
|
],
|
|
1007
1094
|
"seriesKey": "UK",
|
|
1008
|
-
"stroke": "#
|
|
1095
|
+
"stroke": "#eb7289",
|
|
1009
1096
|
"strokeDasharray": undefined,
|
|
1010
1097
|
"strokeWidth": 1.5,
|
|
1011
1098
|
"type": "line",
|
|
@@ -1036,7 +1123,7 @@ exports[`compileChart snapshot (Step 7 oracle) > legend-heavy multi-series line
|
|
|
1036
1123
|
"tooltip": {
|
|
1037
1124
|
"fields": [
|
|
1038
1125
|
{
|
|
1039
|
-
"color": "#
|
|
1126
|
+
"color": "#3bb974",
|
|
1040
1127
|
"label": "country",
|
|
1041
1128
|
"value": "FR",
|
|
1042
1129
|
},
|
|
@@ -1052,8 +1139,8 @@ exports[`compileChart snapshot (Step 7 oracle) > legend-heavy multi-series line
|
|
|
1052
1139
|
],
|
|
1053
1140
|
"title": "2020",
|
|
1054
1141
|
},
|
|
1055
|
-
"x":
|
|
1056
|
-
"y":
|
|
1142
|
+
"x": 47,
|
|
1143
|
+
"y": 349.52000000000004,
|
|
1057
1144
|
},
|
|
1058
1145
|
{
|
|
1059
1146
|
"datum": {
|
|
@@ -1064,7 +1151,7 @@ exports[`compileChart snapshot (Step 7 oracle) > legend-heavy multi-series line
|
|
|
1064
1151
|
"tooltip": {
|
|
1065
1152
|
"fields": [
|
|
1066
1153
|
{
|
|
1067
|
-
"color": "#
|
|
1154
|
+
"color": "#3bb974",
|
|
1068
1155
|
"label": "country",
|
|
1069
1156
|
"value": "FR",
|
|
1070
1157
|
},
|
|
@@ -1080,40 +1167,24 @@ exports[`compileChart snapshot (Step 7 oracle) > legend-heavy multi-series line
|
|
|
1080
1167
|
],
|
|
1081
1168
|
"title": "2021",
|
|
1082
1169
|
},
|
|
1083
|
-
"x":
|
|
1084
|
-
"y":
|
|
1170
|
+
"x": 657.899,
|
|
1171
|
+
"y": 242.62999999999997,
|
|
1085
1172
|
},
|
|
1086
1173
|
],
|
|
1087
|
-
"label": {
|
|
1088
|
-
"connector": undefined,
|
|
1089
|
-
"style": {
|
|
1090
|
-
"dominantBaseline": "central",
|
|
1091
|
-
"fill": "#6a9f58",
|
|
1092
|
-
"fontFamily": "system-ui, -apple-system, sans-serif",
|
|
1093
|
-
"fontSize": 11,
|
|
1094
|
-
"fontWeight": 600,
|
|
1095
|
-
"lineHeight": 1.2,
|
|
1096
|
-
"textAnchor": "start",
|
|
1097
|
-
},
|
|
1098
|
-
"text": "FR",
|
|
1099
|
-
"visible": true,
|
|
1100
|
-
"x": 710.293,
|
|
1101
|
-
"y": 226.26,
|
|
1102
|
-
},
|
|
1103
1174
|
"opacity": undefined,
|
|
1104
|
-
"path": "
|
|
1175
|
+
"path": "M47,349.52L657.899,242.63",
|
|
1105
1176
|
"points": [
|
|
1106
1177
|
{
|
|
1107
|
-
"x":
|
|
1108
|
-
"y":
|
|
1178
|
+
"x": 47,
|
|
1179
|
+
"y": 349.52000000000004,
|
|
1109
1180
|
},
|
|
1110
1181
|
{
|
|
1111
|
-
"x":
|
|
1112
|
-
"y":
|
|
1182
|
+
"x": 657.899,
|
|
1183
|
+
"y": 242.62999999999997,
|
|
1113
1184
|
},
|
|
1114
1185
|
],
|
|
1115
1186
|
"seriesKey": "FR",
|
|
1116
|
-
"stroke": "#
|
|
1187
|
+
"stroke": "#3bb974",
|
|
1117
1188
|
"strokeDasharray": undefined,
|
|
1118
1189
|
"strokeWidth": 1.5,
|
|
1119
1190
|
"type": "line",
|
|
@@ -1144,7 +1215,7 @@ exports[`compileChart snapshot (Step 7 oracle) > legend-heavy multi-series line
|
|
|
1144
1215
|
"tooltip": {
|
|
1145
1216
|
"fields": [
|
|
1146
1217
|
{
|
|
1147
|
-
"color": "#
|
|
1218
|
+
"color": "#ad87ed",
|
|
1148
1219
|
"label": "country",
|
|
1149
1220
|
"value": "DE",
|
|
1150
1221
|
},
|
|
@@ -1160,8 +1231,8 @@ exports[`compileChart snapshot (Step 7 oracle) > legend-heavy multi-series line
|
|
|
1160
1231
|
],
|
|
1161
1232
|
"title": "2020",
|
|
1162
1233
|
},
|
|
1163
|
-
"x":
|
|
1164
|
-
"y":
|
|
1234
|
+
"x": 47,
|
|
1235
|
+
"y": 318.97999999999996,
|
|
1165
1236
|
},
|
|
1166
1237
|
{
|
|
1167
1238
|
"datum": {
|
|
@@ -1172,7 +1243,7 @@ exports[`compileChart snapshot (Step 7 oracle) > legend-heavy multi-series line
|
|
|
1172
1243
|
"tooltip": {
|
|
1173
1244
|
"fields": [
|
|
1174
1245
|
{
|
|
1175
|
-
"color": "#
|
|
1246
|
+
"color": "#ad87ed",
|
|
1176
1247
|
"label": "country",
|
|
1177
1248
|
"value": "DE",
|
|
1178
1249
|
},
|
|
@@ -1188,95 +1259,85 @@ exports[`compileChart snapshot (Step 7 oracle) > legend-heavy multi-series line
|
|
|
1188
1259
|
],
|
|
1189
1260
|
"title": "2021",
|
|
1190
1261
|
},
|
|
1191
|
-
"x":
|
|
1192
|
-
"y":
|
|
1262
|
+
"x": 657.899,
|
|
1263
|
+
"y": 196.82,
|
|
1193
1264
|
},
|
|
1194
1265
|
],
|
|
1195
|
-
"label": {
|
|
1196
|
-
"connector": undefined,
|
|
1197
|
-
"style": {
|
|
1198
|
-
"dominantBaseline": "central",
|
|
1199
|
-
"fill": "#d47215",
|
|
1200
|
-
"fontFamily": "system-ui, -apple-system, sans-serif",
|
|
1201
|
-
"fontSize": 11,
|
|
1202
|
-
"fontWeight": 600,
|
|
1203
|
-
"lineHeight": 1.2,
|
|
1204
|
-
"textAnchor": "start",
|
|
1205
|
-
},
|
|
1206
|
-
"text": "DE",
|
|
1207
|
-
"visible": true,
|
|
1208
|
-
"x": 710.293,
|
|
1209
|
-
"y": 177.84,
|
|
1210
|
-
},
|
|
1211
1266
|
"opacity": undefined,
|
|
1212
|
-
"path": "
|
|
1267
|
+
"path": "M47,318.98L657.899,196.82",
|
|
1213
1268
|
"points": [
|
|
1214
1269
|
{
|
|
1215
|
-
"x":
|
|
1216
|
-
"y":
|
|
1270
|
+
"x": 47,
|
|
1271
|
+
"y": 318.97999999999996,
|
|
1217
1272
|
},
|
|
1218
1273
|
{
|
|
1219
|
-
"x":
|
|
1220
|
-
"y":
|
|
1274
|
+
"x": 657.899,
|
|
1275
|
+
"y": 196.82,
|
|
1221
1276
|
},
|
|
1222
1277
|
],
|
|
1223
1278
|
"seriesKey": "DE",
|
|
1224
|
-
"stroke": "#
|
|
1279
|
+
"stroke": "#ad87ed",
|
|
1225
1280
|
"strokeDasharray": undefined,
|
|
1226
1281
|
"strokeWidth": 1.5,
|
|
1227
1282
|
"type": "line",
|
|
1228
1283
|
},
|
|
1229
1284
|
],
|
|
1285
|
+
"metrics": undefined,
|
|
1230
1286
|
"theme": {
|
|
1231
|
-
"borderRadius":
|
|
1287
|
+
"borderRadius": 2,
|
|
1232
1288
|
"chrome": {
|
|
1233
1289
|
"byline": {
|
|
1234
|
-
"color": "#
|
|
1235
|
-
"fontSize":
|
|
1290
|
+
"color": "#71717a",
|
|
1291
|
+
"fontSize": 11,
|
|
1236
1292
|
"fontWeight": 400,
|
|
1237
|
-
"lineHeight": 1.
|
|
1293
|
+
"lineHeight": 1.4,
|
|
1294
|
+
},
|
|
1295
|
+
"eyebrow": {
|
|
1296
|
+
"color": "#06b6d4",
|
|
1297
|
+
"fontSize": 11,
|
|
1298
|
+
"fontWeight": 510,
|
|
1299
|
+
"lineHeight": 1.4,
|
|
1238
1300
|
},
|
|
1239
1301
|
"footer": {
|
|
1240
|
-
"color": "#
|
|
1241
|
-
"fontSize":
|
|
1302
|
+
"color": "#71717a",
|
|
1303
|
+
"fontSize": 11,
|
|
1242
1304
|
"fontWeight": 400,
|
|
1243
|
-
"lineHeight": 1.
|
|
1305
|
+
"lineHeight": 1.4,
|
|
1244
1306
|
},
|
|
1245
1307
|
"source": {
|
|
1246
|
-
"color": "#
|
|
1247
|
-
"fontSize":
|
|
1308
|
+
"color": "#71717a",
|
|
1309
|
+
"fontSize": 11,
|
|
1248
1310
|
"fontWeight": 400,
|
|
1249
|
-
"lineHeight": 1.
|
|
1311
|
+
"lineHeight": 1.4,
|
|
1250
1312
|
},
|
|
1251
1313
|
"subtitle": {
|
|
1252
|
-
"color": "#
|
|
1253
|
-
"fontSize":
|
|
1314
|
+
"color": "#71717a",
|
|
1315
|
+
"fontSize": 14,
|
|
1254
1316
|
"fontWeight": 400,
|
|
1255
|
-
"lineHeight": 1.
|
|
1317
|
+
"lineHeight": 1.45,
|
|
1256
1318
|
},
|
|
1257
1319
|
"title": {
|
|
1258
|
-
"color": "#
|
|
1259
|
-
"fontSize":
|
|
1260
|
-
"fontWeight":
|
|
1261
|
-
"lineHeight": 1.
|
|
1320
|
+
"color": "#09090b",
|
|
1321
|
+
"fontSize": 26,
|
|
1322
|
+
"fontWeight": 590,
|
|
1323
|
+
"lineHeight": 1.15,
|
|
1262
1324
|
},
|
|
1263
1325
|
},
|
|
1264
1326
|
"colors": {
|
|
1265
1327
|
"annotationFill": "rgba(0,0,0,0.04)",
|
|
1266
|
-
"annotationText": "#
|
|
1267
|
-
"axis": "#
|
|
1328
|
+
"annotationText": "#71717a",
|
|
1329
|
+
"axis": "#71717a",
|
|
1268
1330
|
"background": "#ffffff",
|
|
1269
1331
|
"categorical": [
|
|
1270
|
-
"#
|
|
1271
|
-
"#
|
|
1272
|
-
"#
|
|
1273
|
-
"#
|
|
1274
|
-
"#
|
|
1275
|
-
"#
|
|
1276
|
-
"#
|
|
1277
|
-
"#
|
|
1278
|
-
"#
|
|
1279
|
-
"#858078",
|
|
1332
|
+
"#06b6d4",
|
|
1333
|
+
"#eb7289",
|
|
1334
|
+
"#3bb974",
|
|
1335
|
+
"#ad87ed",
|
|
1336
|
+
"#e69c3a",
|
|
1337
|
+
"#4ba3f7",
|
|
1338
|
+
"#eb8656",
|
|
1339
|
+
"#8494fa",
|
|
1340
|
+
"#00b9c3",
|
|
1280
1341
|
],
|
|
1281
1342
|
"diverging": {
|
|
1282
1343
|
"brownTeal": [
|
|
@@ -1298,7 +1359,9 @@ exports[`compileChart snapshot (Step 7 oracle) > legend-heavy multi-series line
|
|
|
1298
1359
|
"#2166ac",
|
|
1299
1360
|
],
|
|
1300
1361
|
},
|
|
1301
|
-
"gridline": "
|
|
1362
|
+
"gridline": "rgba(0,0,0,0.06)",
|
|
1363
|
+
"negative": "#dc2626",
|
|
1364
|
+
"positive": "#16a34a",
|
|
1302
1365
|
"sequential": {
|
|
1303
1366
|
"blue": [
|
|
1304
1367
|
"#deebf7",
|
|
@@ -1342,23 +1405,23 @@ exports[`compileChart snapshot (Step 7 oracle) > legend-heavy multi-series line
|
|
|
1342
1405
|
"#004450",
|
|
1343
1406
|
],
|
|
1344
1407
|
},
|
|
1345
|
-
"text": "#
|
|
1408
|
+
"text": "#09090b",
|
|
1346
1409
|
},
|
|
1347
1410
|
"fonts": {
|
|
1348
|
-
"family": "Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
1411
|
+
"family": ""Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
1349
1412
|
"mono": ""JetBrains Mono", "Fira Code", "Cascadia Code", monospace",
|
|
1350
1413
|
"sizes": {
|
|
1351
1414
|
"axisTick": 11,
|
|
1352
1415
|
"body": 13,
|
|
1353
1416
|
"small": 11,
|
|
1354
|
-
"subtitle":
|
|
1355
|
-
"title":
|
|
1417
|
+
"subtitle": 14,
|
|
1418
|
+
"title": 26,
|
|
1356
1419
|
},
|
|
1357
1420
|
"weights": {
|
|
1358
1421
|
"bold": 700,
|
|
1359
|
-
"medium":
|
|
1422
|
+
"medium": 510,
|
|
1360
1423
|
"normal": 400,
|
|
1361
|
-
"semibold":
|
|
1424
|
+
"semibold": 590,
|
|
1362
1425
|
},
|
|
1363
1426
|
},
|
|
1364
1427
|
"isDark": false,
|
|
@@ -1407,17 +1470,17 @@ exports[`compileChart snapshot (Step 7 oracle) > watermarked column chart with g
|
|
|
1407
1470
|
"animation": undefined,
|
|
1408
1471
|
"annotations": [],
|
|
1409
1472
|
"area": {
|
|
1410
|
-
"height":
|
|
1473
|
+
"height": 236.3,
|
|
1411
1474
|
"width": 535.46,
|
|
1412
1475
|
"x": 41.54,
|
|
1413
|
-
"y":
|
|
1476
|
+
"y": 60.9,
|
|
1414
1477
|
},
|
|
1415
1478
|
"axes": {
|
|
1416
1479
|
"x": {
|
|
1417
1480
|
"domainLine": undefined,
|
|
1418
1481
|
"end": {
|
|
1419
1482
|
"x": 577,
|
|
1420
|
-
"y":
|
|
1483
|
+
"y": 297.2,
|
|
1421
1484
|
},
|
|
1422
1485
|
"gridlines": [],
|
|
1423
1486
|
"label": undefined,
|
|
@@ -1425,28 +1488,29 @@ exports[`compileChart snapshot (Step 7 oracle) > watermarked column chart with g
|
|
|
1425
1488
|
"labelOverlap": undefined,
|
|
1426
1489
|
"labelPadding": undefined,
|
|
1427
1490
|
"labelStyle": {
|
|
1428
|
-
"fill": "#
|
|
1429
|
-
"fontFamily": "Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
1491
|
+
"fill": "#09090b",
|
|
1492
|
+
"fontFamily": ""Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
1430
1493
|
"fontSize": 13,
|
|
1431
|
-
"fontWeight":
|
|
1494
|
+
"fontWeight": 510,
|
|
1432
1495
|
"lineHeight": 1.3,
|
|
1433
1496
|
},
|
|
1434
1497
|
"offset": undefined,
|
|
1435
1498
|
"orient": undefined,
|
|
1436
1499
|
"start": {
|
|
1437
1500
|
"x": 41.54,
|
|
1438
|
-
"y":
|
|
1501
|
+
"y": 297.2,
|
|
1439
1502
|
},
|
|
1440
1503
|
"tickAngle": undefined,
|
|
1441
1504
|
"tickLabelStyle": {
|
|
1442
|
-
"fill": "#
|
|
1443
|
-
"fontFamily": "Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
1505
|
+
"fill": "#71717a",
|
|
1506
|
+
"fontFamily": ""Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
1444
1507
|
"fontSize": 11,
|
|
1445
1508
|
"fontVariant": "tabular-nums",
|
|
1446
1509
|
"fontWeight": 400,
|
|
1447
1510
|
"lineHeight": 1.2,
|
|
1448
1511
|
},
|
|
1449
1512
|
"tickMarks": undefined,
|
|
1513
|
+
"tickPosition": "gutter",
|
|
1450
1514
|
"ticks": [
|
|
1451
1515
|
{
|
|
1452
1516
|
"label": "A",
|
|
@@ -1475,24 +1539,24 @@ exports[`compileChart snapshot (Step 7 oracle) > watermarked column chart with g
|
|
|
1475
1539
|
"domainLine": undefined,
|
|
1476
1540
|
"end": {
|
|
1477
1541
|
"x": 41.54,
|
|
1478
|
-
"y":
|
|
1542
|
+
"y": 297.2,
|
|
1479
1543
|
},
|
|
1480
1544
|
"gridlines": [
|
|
1481
1545
|
{
|
|
1482
1546
|
"major": true,
|
|
1483
|
-
"position":
|
|
1547
|
+
"position": 297.2,
|
|
1484
1548
|
},
|
|
1485
1549
|
{
|
|
1486
1550
|
"major": true,
|
|
1487
|
-
"position": 229.
|
|
1551
|
+
"position": 229.68571428571428,
|
|
1488
1552
|
},
|
|
1489
1553
|
{
|
|
1490
1554
|
"major": true,
|
|
1491
|
-
"position":
|
|
1555
|
+
"position": 162.17142857142858,
|
|
1492
1556
|
},
|
|
1493
1557
|
{
|
|
1494
1558
|
"major": true,
|
|
1495
|
-
"position":
|
|
1559
|
+
"position": 94.65714285714287,
|
|
1496
1560
|
},
|
|
1497
1561
|
],
|
|
1498
1562
|
"label": undefined,
|
|
@@ -1500,47 +1564,48 @@ exports[`compileChart snapshot (Step 7 oracle) > watermarked column chart with g
|
|
|
1500
1564
|
"labelOverlap": undefined,
|
|
1501
1565
|
"labelPadding": undefined,
|
|
1502
1566
|
"labelStyle": {
|
|
1503
|
-
"fill": "#
|
|
1504
|
-
"fontFamily": "Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
1567
|
+
"fill": "#09090b",
|
|
1568
|
+
"fontFamily": ""Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
1505
1569
|
"fontSize": 13,
|
|
1506
|
-
"fontWeight":
|
|
1570
|
+
"fontWeight": 510,
|
|
1507
1571
|
"lineHeight": 1.3,
|
|
1508
1572
|
},
|
|
1509
1573
|
"offset": undefined,
|
|
1510
1574
|
"orient": undefined,
|
|
1511
1575
|
"start": {
|
|
1512
1576
|
"x": 41.54,
|
|
1513
|
-
"y":
|
|
1577
|
+
"y": 60.9,
|
|
1514
1578
|
},
|
|
1515
1579
|
"tickAngle": undefined,
|
|
1516
1580
|
"tickLabelStyle": {
|
|
1517
|
-
"fill": "#
|
|
1518
|
-
"fontFamily": "Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
1581
|
+
"fill": "#71717a",
|
|
1582
|
+
"fontFamily": ""Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
1519
1583
|
"fontSize": 11,
|
|
1520
1584
|
"fontVariant": "tabular-nums",
|
|
1521
1585
|
"fontWeight": 400,
|
|
1522
1586
|
"lineHeight": 1.2,
|
|
1523
1587
|
},
|
|
1524
1588
|
"tickMarks": undefined,
|
|
1589
|
+
"tickPosition": "gutter",
|
|
1525
1590
|
"ticks": [
|
|
1526
1591
|
{
|
|
1527
1592
|
"label": "0",
|
|
1528
|
-
"position":
|
|
1593
|
+
"position": 297.2,
|
|
1529
1594
|
"value": 0,
|
|
1530
1595
|
},
|
|
1531
1596
|
{
|
|
1532
1597
|
"label": "20",
|
|
1533
|
-
"position": 229.
|
|
1598
|
+
"position": 229.68571428571428,
|
|
1534
1599
|
"value": 20,
|
|
1535
1600
|
},
|
|
1536
1601
|
{
|
|
1537
1602
|
"label": "40",
|
|
1538
|
-
"position":
|
|
1603
|
+
"position": 162.17142857142858,
|
|
1539
1604
|
"value": 40,
|
|
1540
1605
|
},
|
|
1541
1606
|
{
|
|
1542
1607
|
"label": "60",
|
|
1543
|
-
"position":
|
|
1608
|
+
"position": 94.65714285714287,
|
|
1544
1609
|
"value": 60,
|
|
1545
1610
|
},
|
|
1546
1611
|
],
|
|
@@ -1548,31 +1613,31 @@ exports[`compileChart snapshot (Step 7 oracle) > watermarked column chart with g
|
|
|
1548
1613
|
},
|
|
1549
1614
|
},
|
|
1550
1615
|
"chrome": {
|
|
1551
|
-
"bottomHeight":
|
|
1616
|
+
"bottomHeight": 59.8,
|
|
1552
1617
|
"byline": {
|
|
1553
1618
|
"maxWidth": 431,
|
|
1554
1619
|
"style": {
|
|
1555
1620
|
"dominantBaseline": "hanging",
|
|
1556
|
-
"fill": "#
|
|
1557
|
-
"fontFamily": "Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
1558
|
-
"fontSize":
|
|
1621
|
+
"fill": "#71717a",
|
|
1622
|
+
"fontFamily": ""Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
1623
|
+
"fontSize": 11,
|
|
1559
1624
|
"fontWeight": 400,
|
|
1560
|
-
"lineHeight": 1.
|
|
1625
|
+
"lineHeight": 1.4,
|
|
1561
1626
|
"textAnchor": "start",
|
|
1562
1627
|
},
|
|
1563
1628
|
"text": "By the engine",
|
|
1564
1629
|
"x": 17,
|
|
1565
|
-
"y": 27.
|
|
1630
|
+
"y": 27.4,
|
|
1566
1631
|
},
|
|
1567
1632
|
"source": {
|
|
1568
1633
|
"maxWidth": 431,
|
|
1569
1634
|
"style": {
|
|
1570
1635
|
"dominantBaseline": "hanging",
|
|
1571
|
-
"fill": "#
|
|
1572
|
-
"fontFamily": "Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
1573
|
-
"fontSize":
|
|
1636
|
+
"fill": "#71717a",
|
|
1637
|
+
"fontFamily": ""Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
1638
|
+
"fontSize": 11,
|
|
1574
1639
|
"fontWeight": 400,
|
|
1575
|
-
"lineHeight": 1.
|
|
1640
|
+
"lineHeight": 1.4,
|
|
1576
1641
|
"textAnchor": "start",
|
|
1577
1642
|
},
|
|
1578
1643
|
"text": "Test data",
|
|
@@ -1583,18 +1648,18 @@ exports[`compileChart snapshot (Step 7 oracle) > watermarked column chart with g
|
|
|
1583
1648
|
"maxWidth": 561,
|
|
1584
1649
|
"style": {
|
|
1585
1650
|
"dominantBaseline": "hanging",
|
|
1586
|
-
"fill": "#
|
|
1587
|
-
"fontFamily": "Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
1588
|
-
"fontSize":
|
|
1589
|
-
"fontWeight":
|
|
1590
|
-
"lineHeight": 1.
|
|
1651
|
+
"fill": "#09090b",
|
|
1652
|
+
"fontFamily": ""Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
1653
|
+
"fontSize": 26,
|
|
1654
|
+
"fontWeight": 590,
|
|
1655
|
+
"lineHeight": 1.15,
|
|
1591
1656
|
"textAnchor": "start",
|
|
1592
1657
|
},
|
|
1593
1658
|
"text": "Gradient Columns",
|
|
1594
1659
|
"x": 17,
|
|
1595
1660
|
"y": 17,
|
|
1596
1661
|
},
|
|
1597
|
-
"topHeight":
|
|
1662
|
+
"topHeight": 37.9,
|
|
1598
1663
|
},
|
|
1599
1664
|
"crosshair": false,
|
|
1600
1665
|
"dimensions": {
|
|
@@ -1612,15 +1677,17 @@ exports[`compileChart snapshot (Step 7 oracle) > watermarked column chart with g
|
|
|
1612
1677
|
"entries": [],
|
|
1613
1678
|
"entryGap": 16,
|
|
1614
1679
|
"labelStyle": {
|
|
1615
|
-
"fill": "#
|
|
1616
|
-
"fontFamily": "Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
1680
|
+
"fill": "#09090b",
|
|
1681
|
+
"fontFamily": ""Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
1617
1682
|
"fontSize": 11,
|
|
1618
1683
|
"fontWeight": 400,
|
|
1619
1684
|
"lineHeight": 1.3,
|
|
1620
1685
|
},
|
|
1621
1686
|
"position": "top",
|
|
1687
|
+
"swatchChipFill": "rgba(0,0,0,0.04)",
|
|
1622
1688
|
"swatchGap": 6,
|
|
1623
1689
|
"swatchSize": 12,
|
|
1690
|
+
"type": "categorical",
|
|
1624
1691
|
},
|
|
1625
1692
|
"marks": [
|
|
1626
1693
|
{
|
|
@@ -1645,7 +1712,7 @@ exports[`compileChart snapshot (Step 7 oracle) > watermarked column chart with g
|
|
|
1645
1712
|
],
|
|
1646
1713
|
"type": "linear",
|
|
1647
1714
|
},
|
|
1648
|
-
"height": 101.
|
|
1715
|
+
"height": 101.27142857142857,
|
|
1649
1716
|
"label": {
|
|
1650
1717
|
"connector": undefined,
|
|
1651
1718
|
"style": {
|
|
@@ -1660,13 +1727,13 @@ exports[`compileChart snapshot (Step 7 oracle) > watermarked column chart with g
|
|
|
1660
1727
|
"text": "30",
|
|
1661
1728
|
"visible": true,
|
|
1662
1729
|
"x": 124.62862068965518,
|
|
1663
|
-
"y": 177.
|
|
1730
|
+
"y": 177.92857142857142,
|
|
1664
1731
|
},
|
|
1665
1732
|
"orient": "vertical",
|
|
1666
1733
|
"type": "rect",
|
|
1667
1734
|
"width": 80.01126436781611,
|
|
1668
1735
|
"x": 84.62298850574712,
|
|
1669
|
-
"y": 195.
|
|
1736
|
+
"y": 195.92857142857142,
|
|
1670
1737
|
},
|
|
1671
1738
|
{
|
|
1672
1739
|
"aria": {
|
|
@@ -1690,7 +1757,7 @@ exports[`compileChart snapshot (Step 7 oracle) > watermarked column chart with g
|
|
|
1690
1757
|
],
|
|
1691
1758
|
"type": "linear",
|
|
1692
1759
|
},
|
|
1693
|
-
"height":
|
|
1760
|
+
"height": 185.6642857142857,
|
|
1694
1761
|
"label": {
|
|
1695
1762
|
"connector": undefined,
|
|
1696
1763
|
"style": {
|
|
@@ -1705,13 +1772,13 @@ exports[`compileChart snapshot (Step 7 oracle) > watermarked column chart with g
|
|
|
1705
1772
|
"text": "55",
|
|
1706
1773
|
"visible": true,
|
|
1707
1774
|
"x": 247.7228735632184,
|
|
1708
|
-
"y":
|
|
1775
|
+
"y": 93.53571428571429,
|
|
1709
1776
|
},
|
|
1710
1777
|
"orient": "vertical",
|
|
1711
1778
|
"type": "rect",
|
|
1712
1779
|
"width": 80.01126436781611,
|
|
1713
1780
|
"x": 207.71724137931034,
|
|
1714
|
-
"y":
|
|
1781
|
+
"y": 111.53571428571429,
|
|
1715
1782
|
},
|
|
1716
1783
|
{
|
|
1717
1784
|
"aria": {
|
|
@@ -1735,7 +1802,7 @@ exports[`compileChart snapshot (Step 7 oracle) > watermarked column chart with g
|
|
|
1735
1802
|
],
|
|
1736
1803
|
"type": "linear",
|
|
1737
1804
|
},
|
|
1738
|
-
"height":
|
|
1805
|
+
"height": 236.29999999999998,
|
|
1739
1806
|
"label": {
|
|
1740
1807
|
"connector": undefined,
|
|
1741
1808
|
"style": {
|
|
@@ -1750,13 +1817,13 @@ exports[`compileChart snapshot (Step 7 oracle) > watermarked column chart with g
|
|
|
1750
1817
|
"text": "70",
|
|
1751
1818
|
"visible": true,
|
|
1752
1819
|
"x": 370.8171264367816,
|
|
1753
|
-
"y":
|
|
1820
|
+
"y": 42.9,
|
|
1754
1821
|
},
|
|
1755
1822
|
"orient": "vertical",
|
|
1756
1823
|
"type": "rect",
|
|
1757
1824
|
"width": 80.01126436781611,
|
|
1758
1825
|
"x": 330.81149425287356,
|
|
1759
|
-
"y":
|
|
1826
|
+
"y": 60.9,
|
|
1760
1827
|
},
|
|
1761
1828
|
{
|
|
1762
1829
|
"aria": {
|
|
@@ -1780,7 +1847,7 @@ exports[`compileChart snapshot (Step 7 oracle) > watermarked column chart with g
|
|
|
1780
1847
|
],
|
|
1781
1848
|
"type": "linear",
|
|
1782
1849
|
},
|
|
1783
|
-
"height":
|
|
1850
|
+
"height": 151.90714285714287,
|
|
1784
1851
|
"label": {
|
|
1785
1852
|
"connector": undefined,
|
|
1786
1853
|
"style": {
|
|
@@ -1795,65 +1862,71 @@ exports[`compileChart snapshot (Step 7 oracle) > watermarked column chart with g
|
|
|
1795
1862
|
"text": "45",
|
|
1796
1863
|
"visible": true,
|
|
1797
1864
|
"x": 493.9113793103449,
|
|
1798
|
-
"y":
|
|
1865
|
+
"y": 127.29285714285712,
|
|
1799
1866
|
},
|
|
1800
1867
|
"orient": "vertical",
|
|
1801
1868
|
"type": "rect",
|
|
1802
1869
|
"width": 80.01126436781611,
|
|
1803
1870
|
"x": 453.90574712643684,
|
|
1804
|
-
"y":
|
|
1871
|
+
"y": 145.29285714285712,
|
|
1805
1872
|
},
|
|
1806
1873
|
],
|
|
1874
|
+
"metrics": undefined,
|
|
1807
1875
|
"theme": {
|
|
1808
|
-
"borderRadius":
|
|
1876
|
+
"borderRadius": 2,
|
|
1809
1877
|
"chrome": {
|
|
1810
1878
|
"byline": {
|
|
1811
|
-
"color": "#
|
|
1812
|
-
"fontSize":
|
|
1879
|
+
"color": "#71717a",
|
|
1880
|
+
"fontSize": 11,
|
|
1813
1881
|
"fontWeight": 400,
|
|
1814
|
-
"lineHeight": 1.
|
|
1882
|
+
"lineHeight": 1.4,
|
|
1883
|
+
},
|
|
1884
|
+
"eyebrow": {
|
|
1885
|
+
"color": "#06b6d4",
|
|
1886
|
+
"fontSize": 11,
|
|
1887
|
+
"fontWeight": 510,
|
|
1888
|
+
"lineHeight": 1.4,
|
|
1815
1889
|
},
|
|
1816
1890
|
"footer": {
|
|
1817
|
-
"color": "#
|
|
1818
|
-
"fontSize":
|
|
1891
|
+
"color": "#71717a",
|
|
1892
|
+
"fontSize": 11,
|
|
1819
1893
|
"fontWeight": 400,
|
|
1820
|
-
"lineHeight": 1.
|
|
1894
|
+
"lineHeight": 1.4,
|
|
1821
1895
|
},
|
|
1822
1896
|
"source": {
|
|
1823
|
-
"color": "#
|
|
1824
|
-
"fontSize":
|
|
1897
|
+
"color": "#71717a",
|
|
1898
|
+
"fontSize": 11,
|
|
1825
1899
|
"fontWeight": 400,
|
|
1826
|
-
"lineHeight": 1.
|
|
1900
|
+
"lineHeight": 1.4,
|
|
1827
1901
|
},
|
|
1828
1902
|
"subtitle": {
|
|
1829
|
-
"color": "#
|
|
1830
|
-
"fontSize":
|
|
1903
|
+
"color": "#71717a",
|
|
1904
|
+
"fontSize": 14,
|
|
1831
1905
|
"fontWeight": 400,
|
|
1832
|
-
"lineHeight": 1.
|
|
1906
|
+
"lineHeight": 1.45,
|
|
1833
1907
|
},
|
|
1834
1908
|
"title": {
|
|
1835
|
-
"color": "#
|
|
1836
|
-
"fontSize":
|
|
1837
|
-
"fontWeight":
|
|
1838
|
-
"lineHeight": 1.
|
|
1909
|
+
"color": "#09090b",
|
|
1910
|
+
"fontSize": 26,
|
|
1911
|
+
"fontWeight": 590,
|
|
1912
|
+
"lineHeight": 1.15,
|
|
1839
1913
|
},
|
|
1840
1914
|
},
|
|
1841
1915
|
"colors": {
|
|
1842
1916
|
"annotationFill": "rgba(0,0,0,0.04)",
|
|
1843
|
-
"annotationText": "#
|
|
1844
|
-
"axis": "#
|
|
1917
|
+
"annotationText": "#71717a",
|
|
1918
|
+
"axis": "#71717a",
|
|
1845
1919
|
"background": "#ffffff",
|
|
1846
1920
|
"categorical": [
|
|
1847
|
-
"#
|
|
1848
|
-
"#
|
|
1849
|
-
"#
|
|
1850
|
-
"#
|
|
1851
|
-
"#
|
|
1852
|
-
"#
|
|
1853
|
-
"#
|
|
1854
|
-
"#
|
|
1855
|
-
"#
|
|
1856
|
-
"#858078",
|
|
1921
|
+
"#06b6d4",
|
|
1922
|
+
"#eb7289",
|
|
1923
|
+
"#3bb974",
|
|
1924
|
+
"#ad87ed",
|
|
1925
|
+
"#e69c3a",
|
|
1926
|
+
"#4ba3f7",
|
|
1927
|
+
"#eb8656",
|
|
1928
|
+
"#8494fa",
|
|
1929
|
+
"#00b9c3",
|
|
1857
1930
|
],
|
|
1858
1931
|
"diverging": {
|
|
1859
1932
|
"brownTeal": [
|
|
@@ -1875,7 +1948,9 @@ exports[`compileChart snapshot (Step 7 oracle) > watermarked column chart with g
|
|
|
1875
1948
|
"#2166ac",
|
|
1876
1949
|
],
|
|
1877
1950
|
},
|
|
1878
|
-
"gridline": "
|
|
1951
|
+
"gridline": "rgba(0,0,0,0.06)",
|
|
1952
|
+
"negative": "#dc2626",
|
|
1953
|
+
"positive": "#16a34a",
|
|
1879
1954
|
"sequential": {
|
|
1880
1955
|
"blue": [
|
|
1881
1956
|
"#deebf7",
|
|
@@ -1919,23 +1994,23 @@ exports[`compileChart snapshot (Step 7 oracle) > watermarked column chart with g
|
|
|
1919
1994
|
"#004450",
|
|
1920
1995
|
],
|
|
1921
1996
|
},
|
|
1922
|
-
"text": "#
|
|
1997
|
+
"text": "#09090b",
|
|
1923
1998
|
},
|
|
1924
1999
|
"fonts": {
|
|
1925
|
-
"family": "Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
2000
|
+
"family": ""Inter Variable", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif",
|
|
1926
2001
|
"mono": ""JetBrains Mono", "Fira Code", "Cascadia Code", monospace",
|
|
1927
2002
|
"sizes": {
|
|
1928
2003
|
"axisTick": 11,
|
|
1929
2004
|
"body": 13,
|
|
1930
2005
|
"small": 11,
|
|
1931
|
-
"subtitle":
|
|
1932
|
-
"title":
|
|
2006
|
+
"subtitle": 14,
|
|
2007
|
+
"title": 26,
|
|
1933
2008
|
},
|
|
1934
2009
|
"weights": {
|
|
1935
2010
|
"bold": 700,
|
|
1936
|
-
"medium":
|
|
2011
|
+
"medium": 510,
|
|
1937
2012
|
"normal": 400,
|
|
1938
|
-
"semibold":
|
|
2013
|
+
"semibold": 590,
|
|
1939
2014
|
},
|
|
1940
2015
|
},
|
|
1941
2016
|
"isDark": false,
|