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

com.github.highcharts4gwt.model.factory.api.HighchartsOptionFactory Maven / Gradle / Ivy

There is a newer version: 0.0.7
Show newest version
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