All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.highcharts4gwt.model.highcharts.option.api.seriesfunnel.Point Maven / Gradle / Ivy

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);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy