-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy patharea_stack.jsx
107 lines (89 loc) · 2.04 KB
/
area_stack.jsx
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
"use strict";
import {
default as React,
Component,
PropTypes,
} from 'react';
import d3 from 'd3';
import D3Shape from 'd3-shape'
import CommonProps from '../commonProps';
import {series} from '../utils/series';
export default class AreaStack extends Component {
constructor (props) {
super(props);
}
static defaultProps = {
areaClass: 'react-d3-basics__area_stack',
areaClassName: 'react-d3-basic__area_stack',
...CommonProps
}
_mkStack() {
const {
areaClassName
} = this.props;
var dataset = series(this.props);
const _setStack = this._setStack();
const _setAxes = this._setAxes();
return (
<g>
{
_setStack(dataset).map((area) => {
return (
<path
className={`${areaClassName} area`}
fill={area.color}
d={_setAxes(area.data)}
style={area.style}
/>
)
})
}
</g>
);
}
_setStack () {
const{
chartSeries
} = this.props;
var buildOut = function(len) {
// baseline for positive and negative bars respectively.
var currentXOffsets = [];
var currentXIndex = 0;
return function(d, y0, y){
if(currentXIndex++ % len === 0){
currentXOffsets = [0, 0];
}
if(y >= 0) {
d.y0 = currentXOffsets[1];
d.y = y;
currentXOffsets[1] += y;
} else {
d.y0 = currentXOffsets[0] + y;
d.y = -y;
currentXOffsets[0] += y;
}
}
}
return d3.layout.stack()
.values((d) => { return d.data; })
.out(buildOut(chartSeries.length));
}
_setAxes () {
const {
xScaleSet,
yScaleSet
} = this.props;
return D3Shape.area()
.x((d) => { return xScaleSet(d.x) })
.y0((d) => { return yScaleSet(d.y0) })
.y1((d) => { return yScaleSet(d.y0 + d.y) });
}
render() {
var area = this._mkStack();
return (
<g>
{area}
</g>
);
}
}