ExcelGraphDefined.java
1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
package com.bckefu.excel.graph.entity;
import com.bckefu.excel.graph.constant.ExcelGraphType;
import com.google.common.collect.Lists;
import java.util.List;
/**
* @author : caoliang
* @date : 2017/11/20 下午2:13
*/
public class ExcelGraphDefined implements ExcelGraph {
private ExcelGraphElement category;
public List<ExcelGraphElement> valueList= Lists.newArrayList();
public List<ExcelTitleCell> titleCell=Lists.newArrayList();
private Integer graphType= ExcelGraphType.LINE_CHART;
public List<String> title=Lists.newArrayList();
@Override
public ExcelGraphElement getCategory()
{
return category;
}
public void setCategory(ExcelGraphElement category)
{
this.category = category;
}
@Override
public List<ExcelGraphElement> getValueList()
{
return valueList;
}
public void setValueList(List<ExcelGraphElement> valueList)
{
this.valueList = valueList;
}
@Override
public Integer getGraphType()
{
return graphType;
}
public void setGraphType(Integer graphType)
{
this.graphType = graphType;
}
@Override
public List<ExcelTitleCell> getTitleCell()
{
return titleCell;
}
public void setTitleCell(List<ExcelTitleCell> titleCell)
{
this.titleCell = titleCell;
}
@Override
public List<String> getTitle()
{
return title;
}
public void setTitle(List<String> title)
{
this.title = title;
}
}