Package com.storedobject.chart
Interface ChartEventListener
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Functional interface to listen to events occurring on a chart or its part.
This interface should be implemented to handle ChartEvent
instances, providing a mechanism to react to
various interactions or updates on the chart components.
- Author:
- Syam
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onEvent
(ChartEvent event) Handles an event that occurs on a chart or its part.
-
Method Details
-
onEvent
Handles an event that occurs on a chart or its part. This method is called whenever aChartEvent
is triggered, allowing the implementing class to respond to the event.- Parameters:
event
- The chart event to handle. This provides details about the event, such as its type, the part of the chart the event pertains to, and any additional data associated with the event.
-