com.github.highcharts4gwt.model.factory.api.HighchartsOptionFactory 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.factory.api;
import com.github.highcharts4gwt.model.highcharts.option.api.ChartOptions;
import com.github.highcharts4gwt.model.highcharts.option.api.GlobalOptions;
import com.github.highcharts4gwt.model.highcharts.option.api.Series;
import com.github.highcharts4gwt.model.highcharts.option.api.labels.Item;
import com.github.highcharts4gwt.model.highcharts.option.api.series.Data;
import com.github.highcharts4gwt.model.highcharts.option.api.xaxis.PlotLine;
public interface HighchartsOptionFactory
{
ChartOptions createChartOptions();
GlobalOptions createGlobalOptions();
Series createSeries();
PlotLine createXAxisPlotLine();
com.github.highcharts4gwt.model.highcharts.option.api.yaxis.PlotLine createYAxisPlotLine();
Data createData();
Item createItem();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy