forked from antvis/G2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindices-line-chart-facet-brush-shared.ts
55 lines (53 loc) · 1.26 KB
/
indices-line-chart-facet-brush-shared.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
import { csv } from 'd3-fetch';
import { autoType } from 'd3-dsv';
import { G2Spec, PLOT_CLASS_NAME } from '../../../src';
import { brush } from './penguins-point-brush';
export async function indicesLineChartFacetBrushShared(): Promise<G2Spec> {
const data = await csv('data/indices.csv', autoType);
return {
type: 'facetRect',
height: 600,
width: 700,
paddingRight: 80,
paddingBottom: 50,
paddingLeft: 60,
encode: { y: 'Symbol' },
scale: { y: { paddingInner: 0.2 } },
data,
children: [
{
type: 'line',
frame: false,
scale: { y: { nice: true, facet: false } },
axis: { y: { labelAutoHide: false } },
encode: {
x: 'Date',
y: 'Close',
color: 'Symbol',
key: 'Symbol',
},
state: {
inactive: { opacity: '0.3' },
},
},
],
interaction: {
brushXHighlight: {
facet: true,
reverse: true,
series: true,
},
},
};
}
indicesLineChartFacetBrushShared.steps = ({ canvas }) => {
const { document } = canvas;
const plot = document.getElementsByClassName(PLOT_CLASS_NAME)[0];
return [
{
changeState: () => {
brush(plot, 100, 100, 200, 200);
},
},
];
};