com.github.fluorumlabs.disconnect.highcharts.SeriesPointClickEventObject 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 org.teavm.jso.JSProperty;
/**
* Common information for a click event on a series point.
*
*/
public interface SeriesPointClickEventObject extends Any {
/**
* Clicked point.
*
* @implspec point: Point;
*
*/
@JSProperty("point")
Point getPoint();
/**
* Clicked point.
*
* @implspec point: Point;
*
*/
@JSProperty("point")
void setPoint(Point value);
}