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
1 changed files with 4 additions and 1 deletions

View File

@ -125,7 +125,10 @@ module.exports = React.createClass({
}
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) {