Subversion Repositories SmartDukaan

Rev

Rev 27706 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
26055 tejbeer 1
package com.spice.profitmandi.common.model;
2
 
3
import java.util.List;
4
 
5
public class DatasetModel {
6
 
7
	public String label;
8
	public List<String> backgroundColor;
9
	public List<Double> data;
10
 
11
	public List<String> getBackgroundColor() {
12
		return backgroundColor;
13
	}
14
 
15
	public void setBackgroundColor(List<String> backgroundColor) {
16
		this.backgroundColor = backgroundColor;
17
	}
18
 
19
	public String getLabel() {
20
		return label;
21
	}
22
 
23
	public void setLabel(String label) {
24
		this.label = label;
25
	}
26
 
27
	public List<Double> getData() {
28
		return data;
29
	}
30
 
31
	public void setData(List<Double> data) {
32
		this.data = data;
33
	}
34
 
35
}