Class MapSelectionEvent

java.lang.Object
java.util.EventObject
com.vaadin.flow.component.ComponentEvent<Map>
com.vaadin.componentfactory.maps.events.MapSelectionEvent
All Implemented Interfaces:
Serializable

@DomEvent("chart-selection") public class MapSelectionEvent extends com.vaadin.flow.component.ComponentEvent<Map>
The ChartSelectionEvent class stores information on selection events on the chart's area.
Version:
$Id: $Id
Author:
Vaadin
See Also:
  • Constructor Details

    • MapSelectionEvent

      public MapSelectionEvent(Map source, boolean fromClient, @EventData("event.detail.xAxisMin") Double selectionStart, @EventData("event.detail.xAxisMax") Double selectionEnd, @EventData("event.detail.yAxisMin") Double valueStart, @EventData("event.detail.yAxisMax") Double valueEnd)
      Construct a ChartSelectionEvent
      Parameters:
      source - a Map object.
      fromClient - a boolean.
      selectionStart - a Double object.
      selectionEnd - a Double object.
      valueStart - a Double object.
      valueEnd - a Double object.
  • Method Details

    • getSelectionStart

      public Double getSelectionStart()
      Returns:
      selection start
    • getSelectionEnd

      public Double getSelectionEnd()
      Returns:
      selection end
    • getValueStart

      public Double getValueStart()
      Returns:
      value start
    • getValueEnd

      public Double getValueEnd()
      Returns:
      value end