Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

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