com.github.highcharts4gwt.model.highcharts.option.api.serieswaterfall.Point Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of highcharts Show documentation
Show all versions of highcharts Show documentation
GWT wrapper for highcharts library.
package com.github.highcharts4gwt.model.highcharts.option.api.serieswaterfall;
import com.github.highcharts4gwt.model.highcharts.option.api.serieswaterfall.point.PointClickHandler;
import com.github.highcharts4gwt.model.highcharts.option.api.serieswaterfall.point.PointMouseOutHandler;
import com.github.highcharts4gwt.model.highcharts.option.api.serieswaterfall.point.PointMouseOverHandler;
import com.github.highcharts4gwt.model.highcharts.option.api.serieswaterfall.point.PointRemoveHandler;
import com.github.highcharts4gwt.model.highcharts.option.api.serieswaterfall.point.PointSelectHandler;
import com.github.highcharts4gwt.model.highcharts.option.api.serieswaterfall.point.PointUnselectHandler;
import com.github.highcharts4gwt.model.highcharts.option.api.serieswaterfall.point.PointUpdateHandler;
/**
* Properties for each single point
*
*/
public interface Point {
void addPointClickHandler(PointClickHandler pointClickHandler);
void addPointMouseOutHandler(PointMouseOutHandler pointMouseOutHandler);
void addPointMouseOverHandler(PointMouseOverHandler pointMouseOverHandler);
void addPointRemoveHandler(PointRemoveHandler pointRemoveHandler);
void addPointSelectHandler(PointSelectHandler pointSelectHandler);
void addPointUnselectHandler(PointUnselectHandler pointUnselectHandler);
void addPointUpdateHandler(PointUpdateHandler pointUpdateHandler);
String getFieldAsJsonObject(String fieldName);
Point setFieldAsJsonObject(String fieldName, String fieldValueAsJonObject);
String getFunctionAsString(String fieldName);
Point setFunctionAsString(String fieldName, String functionAsString);
}