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

cn.afterturn.easypoi.excel.graph.entity.ExcelGraphDefined Maven / Gradle / Ivy

There is a newer version: 4.5.0
Show newest version
/**
 * 
 */
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;
	}
	
	
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy