-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Closed
Copy link
Labels
bugSomething isn't workingSomething isn't working
Description
Bug report
Codepen
https://codepen.io/MadBoyEvo/pen/ExNbVeo
Explanation
- What is the behavior you expect?
Both dataPointSelection and click event should return dataPointindex or/and series for all types of events correctly.
- What is happening instead?
Following code behaves differently for different charts. For Pie charts only dataPointSelection provides dataPointIndex, but click event always return -1, -1. Click event for bar chart works correctly so I'm assuming this is a bug, not a feature. Maybe other chart types have the same issue.
events: {
dataPointSelection: function (event, chartContext, config) {
console.log(config.dataPointIndex + " " + config.seriesIndex);
},
click: function (event, chartContext, config) {
console.log(config.dataPointIndex + " " + config.seriesIndex);
}
}
- What error message are you getting?
No error message.
karagog, matibalbi, bn3t and yuki-h-f
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working