PointClickEvent bind absoluteX and absoluteY to Series. Without clicking, how do I identify Series item by knowing absoluteX and absoluteY?
James
PointClickEvent bind absoluteX and absoluteY to Series. Without clicking, how do I identify Series item by knowing absoluteX and absoluteY?
James
I’m guessing it’s related to this:
https://vaadin.com/forum/#!/thread/16986983
Answered in that thread now, thanks Olli!
I don’t think there’s an easy way to do that. It might be possible to do that somehow by analyzing the SVG, but that sounds complicated at the very least.
-Olli
If you have a PointClickEvent you have API to getSeries and getPointIndex to identify the Point as shown in [javadoc]
(https://demo.vaadin.com/javadoc/com.vaadin/vaadin-charts/4.0.1/com/vaadin/addon/charts/PointClickEvent.html)
What is your use case to identify the series or the point without the event from client?