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

com.github.fluorumlabs.disconnect.highcharts.SeriesPointDropPointObject 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 information about a dropped points new values.
 *
 */
public interface SeriesPointDropPointObject extends Any {
  /**
   * New values.
   *
   * @implspec newValues: Dictionary;
   *
   */
  @JSProperty("newValues")
  DoubleRecord getNewValues();

  /**
   * New values.
   *
   * @implspec newValues: Dictionary;
   *
   */
  @JSProperty("newValues")
  void setNewValues(DoubleRecord value);

  /**
   * Dragged point.
   *
   * @implspec point: Point;
   *
   */
  @JSProperty("point")
  Point getPoint();

  /**
   * Dragged point.
   *
   * @implspec point: Point;
   *
   */
  @JSProperty("point")
  void setPoint(Point value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy