2

我正在为 React 项目开发Recharts插件,以显示带有 2 个部分和自定义标签的饼图。

我的要求是在点击时获取饼图部分的值。我可以通过将 onClick 道具添加到Pie标签来实现它。但问题是当我单击饼图中的标签时,不会触发单击事件。

一些搜索结果说,我们不能在 svg 子元素(如 rect、circle、text 等)上设置 click 事件。

有人遇到过这样的问题吗?请帮助我如何进行此操作。

饼图代码

const data = [{ name: 'On Time', value: Number(70), mode: 'total' }, 
              { name: 'Delayed', value: Number(30), mode: 'total' }];
const COLORS = ['#008000', '#fa833c'];
<PieChart width={300} height={300} className={'mainPie'}>
    <Pie dataKey="value"
         activeIndex={this.state.activeIndex}
         labelLine={false}
         label={renderCustomizedLabel}
         data={data}
         cx={150}
         cy={130}
         outerRadius={120}
         innerRadius={60}
         onClick={this.onPieClick}
         fill="#8884d8">
         {data.map((entry, index) => <Cell key={index} fill={COLORS[index % COLORS.length]}/>)}
     </Pie>
 </PieChart>

点击事件函数

onPieClick = (index, data) => {
    console.log('onPieClick'+index.value);
}

自定义标签代码库

const renderCustomizedLabel = ({ cx, cy, midAngle, innerRadius, outerRadius, percent, index, mode}) => {
let radius = innerRadius + (outerRadius - innerRadius) * 0.3;
let x = cx + radius * Math.cos(-midAngle * (Math.PI / 180));    
let y = cy + radius * Math.sin(-midAngle * (Math.PI / 180));
return (
(<g>
        <text x={cx} y={cy} dy={8} textAnchor="middle" fill="black" fontSize="12">DELIVERIES</text>
        <text x={x} y={y} fill="white" textAnchor={x > cx ? 'start' : 'end'} fontSize="12" dominantBaseline="central">
            {(percent * 100).toFixed(2)}%
        </text>
    </g>
);

}

下面是图表的截图。

饼形图

4

1 回答 1

4

Rechart Bar Chart 我也遇到了这个问题。我通过将自定义标签的 pointerEvents 设置为 none 来解决它。

const renderCustomizedLabel = (...) => {
  ...
  return <g style={{ pointerEvents: 'none' }}>...</g>;
};

根据 MDN,通过设置pointer-events: none

元素永远不是鼠标事件的目标;但是,如果这些后代将指针事件设置为其他值,则鼠标事件可能会针对其后代元素。在这些情况下,鼠标事件将在事件捕获/冒泡阶段期间适当地触发此父元素上的事件侦听器。

因此,点击事件通过标签并触发 Pie onClick。

于 2018-04-03T05:08:30.290 回答