1
0
mirror of https://github.com/aclindsa/moneygo.git synced 2024-12-26 07:33:21 -05:00

StackedBarChart.js: Add tooltips to the bars

This commit is contained in:
Aaron Lindsay 2017-02-19 07:41:25 -05:00
parent bef2caef12
commit 232e4b0682

View File

@ -125,7 +125,10 @@ module.exports = React.createClass({
} }
seriesBars.push(( seriesBars.push((
<rect onClick={rectOnClick} className={rectClasses} x={x(i) + barStart} y={rectY} width={barWidth} height={rectHeight} rx={1} ry={1}/> <g>
<title>{child} - {value}</title>
<rect onClick={rectOnClick} className={rectClasses} x={x(i) + barStart} y={rectY} width={barWidth} height={rectHeight} rx={1} ry={1}/>
</g>
)); ));
} }
if (seriesBars.length > 0) { if (seriesBars.length > 0) {