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

org.primefaces.extensions.component.gchart.model.GChartModel Maven / Gradle / Ivy

package org.primefaces.extensions.component.gchart.model;

import java.io.Serializable;
import java.util.Collection;
import java.util.Map;

public interface GChartModel extends Serializable{
	public abstract Collection getRows();
	public abstract Collection getColumns();
	public abstract Map getOptions();
	public abstract GChartType getChartType();
    public abstract String toJson();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy