You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm creating a line chart, with 4 series. Several of the X axis points happen to have the same Y value. If I have any click event (OnClick, OnDataPointSelection, OnSelection, OnMarkerClick, OnXAxisLabelClick, OnMouseEnter) markers are automatically added. However, this has several problems:
Hovering over a datapoint that happens to be in more than one series, only the last is ever shown.
The click events as well only ever report the one point.
It seems to work OK on bar charts, it is just line charts with intersecting data.
This is using a blazor server side application (interactive render mode) under .net 8.
Steps to Reproduce
Have a line chart with multiple series, with more than one datapoints intersecting.
Click on one of these points.
Your event handler will only get one datapoint.
The hover will only display one datapoint.
Expected Behavior
Hovering over a point on a chart that has multiple datapoints should show both.
Clicking should provide both points.
Document what events are exclusive of others, if any.
Actual Behavior
Only last datapoint shown on hover.
Only last datapoint provided to handler.
Disappointed developer.
Screenshots
Reproduction Link
I didn't create a code pen, not sure about event handling in it. I do have a github project with example code in a standalone, server side application.
Description
I'm creating a line chart, with 4 series. Several of the X axis points happen to have the same Y value. If I have any click event (OnClick, OnDataPointSelection,
OnSelection, OnMarkerClick,OnXAxisLabelClick, OnMouseEnter) markers are automatically added. However, this has several problems:It seems to work OK on bar charts, it is just line charts with intersecting data.
This is using a blazor server side application (interactive render mode) under .net 8.
Steps to Reproduce
Expected Behavior
Actual Behavior
Screenshots
Reproduction Link
I didn't create a code pen, not sure about event handling in it. I do have a github project with example code in a standalone, server side application.
https://github.com/mdhampton/BlazorApexChartsTesting.git
In case url is stripped, search for BlazorApecChartsTesting, for user mdhampton.
The text was updated successfully, but these errors were encountered: