-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcars3-line-parallel-vertical.ts
71 lines (70 loc) · 1.56 KB
/
cars3-line-parallel-vertical.ts
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
import { G2Spec } from '../../../src';
export function cars3LineParallelVertical(): G2Spec {
const position = [
'economy (mpg)',
'cylinders',
'displacement (cc)',
'power (hp)',
'weight (lb)',
'0-60 mph (s)',
'year',
];
return {
type: 'line',
height: 800,
paddingBottom: 30,
data: {
type: 'fetch',
value: 'data/cars3.csv',
},
interaction: { tooltip: { series: false } },
coordinate: { type: 'parallel', transform: [{ type: 'transpose' }] },
encode: {
position,
color: 'cylinders',
},
style: {
lineWidth: 1.5,
strokeOpacity: 0.4,
},
layout: { padding: 5 },
scale: {
color: {
palette: 'brBG',
offset: (t) => 1 - t,
},
},
legend: {
color: {
position: 'top',
layout: { justifyContent: 'center' },
size: 50,
length: 300,
labelSpacing: 0,
crossPadding: 20,
},
},
axis: Object.fromEntries(
Array.from({ length: position.length }, (_, i) => [
`position${i === 0 ? '' : i}`,
{
zIndex: 1,
line: true,
tick: true,
labelFontSize: 10,
labelStroke: '#fff',
labelStrokeLineJoin: 'round',
labelLineWidth: 5,
lineStroke: 'black',
lineStrokeOpacity: 1,
lineLineWidth: 1,
tickStroke: 'black',
titleFontSize: 10,
titleStroke: '#fff',
titleStrokeLineJoin: 'round',
titleLineWidth: 5,
},
]),
),
};
}