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
|
import d3 from 'd3';
import React from 'react';
import { ResizeMixin } from './../mixins/resize-mixin';
import { TooltipsMixin } from './../mixins/tooltips-mixin';
export const BarChart = React.createClass({
propTypes: {
data: React.PropTypes.arrayOf(React.PropTypes.object).isRequired,
xTicks: React.PropTypes.arrayOf(React.PropTypes.any),
xValues: React.PropTypes.arrayOf(React.PropTypes.any),
height: React.PropTypes.number,
padding: React.PropTypes.arrayOf(React.PropTypes.number),
barsWidth: React.PropTypes.number
},
mixins: [ResizeMixin, TooltipsMixin],
getDefaultProps() {
return {
xTicks: [],
xValues: [],
padding: [10, 10, 10, 10],
barsWidth: 40
};
},
getInitialState () {
return { width: this.props.width, height: this.props.height };
},
renderXTicks (xScale, yScale) {
if (!this.props.xTicks.length) {
return null;
}
let ticks = this.props.xTicks.map((tick, index) => {
let point = this.props.data[index];
let x = Math.round(xScale(point.x) + xScale.rangeBand() / 2 + this.props.barsWidth / 2);
let y = yScale.range()[0];
let d = this.props.data[index];
let tooltipAtts = {};
if (d.tooltip) {
tooltipAtts['title'] = d.tooltip;
tooltipAtts['data-toggle'] = 'tooltip';
}
return <text key={index}
className="bar-chart-tick"
x={x}
y={y}
dy="1.5em"
{...tooltipAtts}>{tick}</text>;
});
return <g>{ticks}</g>;
},
renderXValues (xScale, yScale) {
if (!this.props.xValues.length) {
return null;
}
let ticks = this.props.xValues.map((value, index) => {
let point = this.props.data[index];
let x = Math.round(xScale(point.x) + xScale.rangeBand() / 2 + this.props.barsWidth / 2);
let y = yScale(point.y);
let d = this.props.data[index];
let tooltipAtts = {};
if (d.tooltip) {
tooltipAtts['title'] = d.tooltip;
tooltipAtts['data-toggle'] = 'tooltip';
}
return <text key={index}
className="bar-chart-tick"
x={x}
y={y}
dy="-1em"
{...tooltipAtts}>{value}</text>;
});
return <g>{ticks}</g>;
},
renderBars (xScale, yScale) {
let bars = this.props.data.map((d, index) => {
let x = Math.round(xScale(d.x) + xScale.rangeBand() / 2);
let maxY = yScale.range()[0];
let y = Math.round(yScale(d.y)) - /* minimum bar height */ 1;
let height = maxY - y;
let tooltipAtts = {};
if (d.tooltip) {
tooltipAtts['title'] = d.tooltip;
tooltipAtts['data-toggle'] = 'tooltip';
}
return <rect key={index}
className="bar-chart-bar"
{...tooltipAtts}
x={x}
y={y}
width={this.props.barsWidth}
height={height}/>;
});
return <g>{bars}</g>;
},
render () {
if (!this.state.width || !this.state.height) {
return <div/>;
}
let availableWidth = this.state.width - this.props.padding[1] - this.props.padding[3];
let availableHeight = this.state.height - this.props.padding[0] - this.props.padding[2];
let maxY = d3.max(this.props.data, d => d.y);
let xScale = d3.scale.ordinal()
.domain(this.props.data.map(d => d.x))
.rangeRoundBands([0, availableWidth]);
let yScale = d3.scale.linear()
.domain([0, maxY])
.range([availableHeight, 0]);
return <svg className="bar-chart" width={this.state.width} height={this.state.height}>
<g transform={`translate(${this.props.padding[3]}, ${this.props.padding[0]})`}>
{this.renderXTicks(xScale, yScale)}
{this.renderXValues(xScale, yScale)}
{this.renderBars(xScale, yScale)}
</g>
</svg>;
}
});
|