-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathbar_stack.jsx
147 lines (127 loc) · 3.24 KB
/
bar_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
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
"use strict";
import {
default as React,
Component,
} from 'react';
import d3 from 'd3';
import { series } from '../utils/series';
export default class BarStack extends Component {
constructor(props) {
super(props);
}
static defaultProps = {
onMouseOver: (d) => {},
onMouseOut: (d) => {},
onClick: (d) => {},
barClassName: 'react-d3-basic__bar_stack'
}
triggerOver(data, e) {
this.props.onMouseOver(e, data)
}
triggerOut(data, e) {
this.props.onMouseOut(e, data)
}
triggerClick(data, e) {
this.props.onClick(e, data);
}
_mkBarStack() {
const {
height,
margins,
barClassName,
xScaleSet,
yScaleSet,
barWidth
} = this.props;
const that = this;
var dataset = series(this.props);
const _setStack = this._setStack();
var domain = yScaleSet.domain();
var zeroBase;
var barBandWidth;
if (domain[0] * domain[1] < 0) {
zeroBase = yScaleSet(0);
} else if (((domain[0] * domain[1]) >= 0) && (domain[0] >= 0)) {
zeroBase = yScaleSet.range()[0];
} else if (((domain[0] * domain[1]) >= 0) && (domain[0] < 0)) {
zeroBase = yScaleSet.range()[1];
}
// user defined barwidth
if(barWidth) {
barBandWidth = barWidth;
}
else {
barBandWidth = xScaleSet.bandwidth();
}
return (
<g>
{
_setStack(dataset).map((barGroup, i) => {
return (
<g
key={i}
className="barGroup"
fill={barGroup.color}
style={barGroup.style}>
{
barGroup.data.map((bar, j) => {
return (
<rect
className={`${barClassName} bar`}
width={barBandWidth}
x={xScaleSet(bar.x) || xScaleSet(bar.x) === 0? xScaleSet(bar.x): -10000}
y={yScaleSet(bar.y0 + bar.y)}
height={Math.abs(yScaleSet(bar.y) - yScaleSet(0))}
onMouseOut={that.triggerOut.bind(this, bar)}
onMouseOver={that.triggerOver.bind(this, bar)}
onClick = { that.triggerClick.bind(this, bar) }
key={j}
/>
)
})
}
</g>
)
})
}
</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));
}
render() {
var bar = this._mkBarStack();
return (
<g>
{bar}
</g>
)
}
}