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

de.jwic.controls.chart.api.ChartModel Maven / Gradle / Ivy

There is a newer version: 5.3.43
Show newest version
package de.jwic.controls.chart.api;

import java.io.Serializable;
import java.util.List;

import de.jwic.controls.chart.impl.util.DataConverter;
import de.jwic.util.SerObservable;

/**
 * 
 * @author Karolina Marek (karolina-marek.eu)
 *
 * @date 29.10.2015
 */
public abstract class ChartModel extends SerObservable implements Serializable {
	private List datasets;

	/**
	 * 
	 * @param datasets
	 */
	public ChartModel(List datasets) {
		this.datasets = datasets;
	}

	/**
	 * returns the dataset as json array which will be rendered directly on java
	 * script site
	 * 
	 * @return
	 */
	public String getDatasetsJson() {

		return DataConverter.convertToJson(datasets);

	}
	
	/**
	 * Returns the labels as a json array. The default implementation returns an empty
	 * array.
	 * @return
	 */
	public String getLabelsJson() {
		return "{}";
	}

	/**
	 * 
	 * @return
	 */
	public List getDatasets() {
		return datasets;
	}

	/**
	 * 
	 * @param datasets
	 */
	public void setDatasets(List datasets) {
		this.datasets = datasets;
	}

	/**
	 * action called after adding, removing or updating new data in the chart
	 */
	public void update() {
		setChanged();
		notifyObservers();
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy