com.github.fluorumlabs.disconnect.highcharts.SeriesPointDropCallbackFunction 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 java.lang.FunctionalInterface;
import js.lang.Any;
import org.teavm.jso.JSFunctor;
/**
* Function callback to execute when series points are dropped.
*
* @param e
* Event arguments.
*
*/
@JSFunctor
@FunctionalInterface
public interface SeriesPointDropCallbackFunction extends Any {
void apply(SeriesPointDropEventObject e);
}