cn.afterturn.easypoi.excel.graph.entity.ExcelGraphDefined Maven / Gradle / Ivy
/**
*
*/
package cn.afterturn.easypoi.excel.graph.entity;
import java.util.ArrayList;
import java.util.List;
import cn.afterturn.easypoi.excel.graph.constant.ExcelGraphType;
/**
* @author xfworld
* @since 2015-12-30
* @version 1.0
*
*/
public class ExcelGraphDefined implements ExcelGraph
{
private ExcelGraphElement category;
public List valueList= new ArrayList<>();
public List titleCell= new ArrayList<>();
private Integer graphType=ExcelGraphType.LINE_CHART;
public List title= new ArrayList<>();
@Override
public ExcelGraphElement getCategory()
{
return category;
}
public void setCategory(ExcelGraphElement category)
{
this.category = category;
}
@Override
public List getValueList()
{
return valueList;
}
public void setValueList(List valueList)
{
this.valueList = valueList;
}
@Override
public Integer getGraphType()
{
return graphType;
}
public void setGraphType(Integer graphType)
{
this.graphType = graphType;
}
@Override
public List getTitleCell()
{
return titleCell;
}
public void setTitleCell(List titleCell)
{
this.titleCell = titleCell;
}
@Override
public List getTitle()
{
return title;
}
public void setTitle(List title)
{
this.title = title;
}
}