All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fluorumlabs.disconnect.highcharts.PointerEventObject Maven / Gradle / Ivy

There is a newer version: 0.1.0-alpha2
Show newest version
package com.github.fluorumlabs.disconnect.highcharts;

import js.web.pointerevents.PointerEvent;
import org.teavm.jso.JSProperty;

/**
 * A native browser mouse or touch event, extended with position information
 * relative to the Chart.container.
 *
 */
public interface PointerEventObject extends PointerEvent {
  /**
   * The X coordinate of the pointer interaction relative to the chart.
   *
   * @implspec chartX: number;
   *
   */
  @JSProperty("chartX")
  double getChartX();

  /**
   * The X coordinate of the pointer interaction relative to the chart.
   *
   * @implspec chartX: number;
   *
   */
  @JSProperty("chartX")
  void setChartX(double value);

  /**
   * The Y coordinate of the pointer interaction relative to the chart.
   *
   * @implspec chartY: number;
   *
   */
  @JSProperty("chartY")
  double getChartY();

  /**
   * The Y coordinate of the pointer interaction relative to the chart.
   *
   * @implspec chartY: number;
   *
   */
  @JSProperty("chartY")
  void setChartY(double value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy