我目前以如下方式呈现图表:
<BarChart width={868} height={40} data={data}
margin={{top:0, bottom: 10, left:0, right:0}} barSize={5}>
<Tooltip
labelStyle={{ textAlign: 'left' }}
cursor={{fill: "blue"}}
position={{ x: this.state.mouseX - 20, y:-5 }}
/>
<Bar dataKey="blocks"
onMouseOver={e => this.getMouseX(e)} >
{
data.map((entry, index) => {
const result = entry.result > 4 ? TRASH : NO_TRASH;
return <Cell fill={result} key={index}/>;
})
}
</Bar>
</BarChart>
是否有一种方法可以更改单元格/条的颜色,而不是将光标悬停在条上?