We have implement both a line and bar chart. After running a few tests none of the click events for the chart will fire using the left mouse button. All of them fire with the right-click. IS there a way to change this behavior to use a left-mouse-click?
const handlePlotAreaClick = (event: PlotAreaClickEvent) => { debugger }
const handleAxisLabelClick = (event: any) => { debugger }
<Chart
onPlotAreaClick={(event: PlotAreaClickEvent) =>
handlePlotAreaClick(event)
}
onAxisLabelClick={(event: any) => handleAxisLabelClick(event)}
>
...
</Chart>