com.github.fluorumlabs.disconnect.highcharts.SelectEventObject 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 js.lang.Any;
import js.util.collections.Array;
import js.web.dom.Event;
import org.teavm.jso.JSProperty;
/**
* Object for select events.
*
*/
public interface SelectEventObject extends Any {
/**
* @implspec originalEvent: Event;
*
*/
@JSProperty("originalEvent")
Event getOriginalEvent();
/**
* @implspec originalEvent: Event;
*
*/
@JSProperty("originalEvent")
void setOriginalEvent(Event value);
/**
* @implspec xAxis: Array;
*
*/
@JSProperty("xAxis")
Array getXAxis();
/**
* @implspec xAxis: Array;
*
*/
@JSProperty("xAxis")
void setXAxis(Array value);
/**
* @implspec yAxis: Array;
*
*/
@JSProperty("yAxis")
Array getYAxis();
/**
* @implspec yAxis: Array;
*
*/
@JSProperty("yAxis")
void setYAxis(Array value);
}