com.github.highcharts4gwt.model.highcharts.option.api.seriesfunnel.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.
The newest version!
package com.github.highcharts4gwt.model.highcharts.option.api.seriesfunnel;
import com.github.highcharts4gwt.model.highcharts.option.api.seriesfunnel.point.ClickHandler;
import com.github.highcharts4gwt.model.highcharts.option.api.seriesfunnel.point.MouseOutHandler;
import com.github.highcharts4gwt.model.highcharts.option.api.seriesfunnel.point.MouseOverHandler;
import com.github.highcharts4gwt.model.highcharts.option.api.seriesfunnel.point.RemoveHandler;
import com.github.highcharts4gwt.model.highcharts.option.api.seriesfunnel.point.SelectHandler;
import com.github.highcharts4gwt.model.highcharts.option.api.seriesfunnel.point.UnselectHandler;
import com.github.highcharts4gwt.model.highcharts.option.api.seriesfunnel.point.UpdateHandler;
/**
* Properties for each single point
*
*/
public interface Point {
void addClickHandler(ClickHandler clickHandler);
void addMouseOutHandler(MouseOutHandler mouseOutHandler);
void addMouseOverHandler(MouseOverHandler mouseOverHandler);
void addRemoveHandler(RemoveHandler removeHandler);
void addSelectHandler(SelectHandler selectHandler);
void addUnselectHandler(UnselectHandler unselectHandler);
void addUpdateHandler(UpdateHandler updateHandler);
String getFieldAsJsonObject(String fieldName);
Point setFieldAsJsonObject(String fieldName, String fieldValueAsJonObject);
String getFunctionAsString(String fieldName);
Point setFunctionAsString(String fieldName, String functionAsString);
}