首页 > 其他 > 详细

FusionCharts重写单系列图

时间:2014-01-20 22:51:00      阅读:347      评论:0      收藏:0      [点我收藏+]
/**
 * @Title:FusionChart.java
 * @Package:com.yhd.chart.model
 * @Description:封装FusionChart单系列图
 * @author:Youhaidong(游海东)
 * @date:2014-1-18 下午11:36:48
 * @version V1.0
 */
package com.yhd.chart.model;

/**
 * 类功能说明
 * 类修改者 修改日期
 * 修改说明
 * <p>Title:FusionChart.java</p>
 * <p>Description:游海东个人开发</p>
 * <p>Copyright:Copyright(c)2013</p>
 * @author:游海东
 * @date:2014-1-18 下午11:36:48
 * @version V1.0
 */
public class FusionChart 
{
	/**
	 * label 标签
	 */
	private String label;
	
	/**
	 * value 值
	 */
	private String value;
	
	/**
	 * color 颜色
	 */
	private String color;

	/**
	 * @return the label
	 */
	public String getLabel() {
		return label;
	}

	/**
	 * @param label the label to set
	 */
	public void setLabel(String label) {
		this.label = label;
	}

	/**
	 * @return the value
	 */
	public String getValue() {
		return value;
	}

	/**
	 * @param value the value to set
	 */
	public void setValue(String value) {
		this.value = value;
	}

	/**
	 * @return the color
	 */
	public String getColor() {
		return color;
	}

	/**
	 * @param color the color to set
	 */
	public void setColor(String color) {
		this.color = color;
	}

	/* (non-Javadoc)
	 * <p>Title:toString</p>
	 * <p>Description:</p>
	 * @return
	 * @see java.lang.Object#toString()
	 */
	@Override
	public String toString() 
	{
		return "{‘label‘:‘" + label + "‘," + "‘value‘:‘" + value + "‘}";
	}

}

FusionCharts重写单系列图

原文:http://blog.csdn.net/you23hai45/article/details/18467561

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!