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

org.dashbuilder.renderer.chartjs.lib.data.Series Maven / Gradle / Ivy

package org.dashbuilder.renderer.chartjs.lib.data;

import com.google.gwt.core.client.JavaScriptObject;


public class Series extends JavaScriptObject{
	
	protected Series() {
	}
	
	public final native double getValue() /*-{
		return this.value;
	}-*/;
	
	public final native void setValue(double value) /*-{
		this.value = value;
	}-*/;

	public final native String getColor() /*-{
		return this.color;
	}-*/;

	public final native void setColor(String color) /*-{
		this.color = color;
	}-*/;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy