![JAR search and dependency download from the Maven repository](/logo.png)
com.github.fluorumlabs.disconnect.highcharts.DataParsedCallbackFunction 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 js.util.collections.Array;
import org.teavm.jso.JSFunctor;
/**
* Callback function to access the parsed columns, the two-dimentional input
* data array directly, before they are interpreted into series data and
* categories.
*
* @param columns
* The parsed columns by the data module.
*
* @return Return false
to stop completion, or call this.complete()
to
* continue async.
*
*/
@JSFunctor
@FunctionalInterface
public interface DataParsedCallbackFunction extends Any {
boolean apply(Array> columns);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy