com.github.highcharts4gwt.model.highcharts.jso.plotoptions.heatmap.JsoStates 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.jso.plotoptions.heatmap;
import com.github.highcharts4gwt.model.highcharts.api.plotoptions.heatmap.States;
import com.github.highcharts4gwt.model.highcharts.api.plotoptions.heatmap.states.Hover;
import com.google.gwt.core.client.JavaScriptObject;
public class JsoStates
extends JavaScriptObject
implements States
{
protected JsoStates() {
}
public final native Hover hover()
throws RuntimeException /*-{
return this["hover"] = (this["hover"] || {});
}-*/
;
public final native JsoStates hover(Hover hover)
throws RuntimeException /*-{
this["hover"] = hover;
return this;
}-*/
;
}