com.github.fluorumlabs.disconnect.highcharts.SeriesPointDragStartEventObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of disconnect-highcharts Show documentation
Show all versions of disconnect-highcharts Show documentation
Highcharts API bindings for Disconnect Zero
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);
}