com.github.highcharts4gwt.model.highcharts.mock.plotoptions.solidgauge.MockSolidgaugeShowEvent 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.mock.plotoptions.solidgauge;
import com.github.highcharts4gwt.model.highcharts.api.Series;
import com.github.highcharts4gwt.model.highcharts.api.plotoptions.solidgauge.SolidgaugeShowEvent;
public class MockSolidgaugeShowEvent
implements SolidgaugeShowEvent
{
private Series series;
public Series getSeries() {
return series;
}
public MockSolidgaugeShowEvent series(Series series) {
this.series = series;
return this;
}
}