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

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

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

import com.github.fluorumlabs.disconnect.types.DoubleRecord;
import js.lang.Any;
import org.teavm.jso.JSProperty;

/**
 * Contains common information for a drag event on series point.
 *
 */
public interface SeriesPointDragStartEventObject extends Any {
  /**
   * Data property being dragged.
   *
   * @implspec updateProp: Dictionary;
   *
   */
  @JSProperty("updateProp")
  DoubleRecord getUpdateProp();

  /**
   * Data property being dragged.
   *
   * @implspec updateProp: Dictionary;
   *
   */
  @JSProperty("updateProp")
  void setUpdateProp(DoubleRecord value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy