using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Web.UI.DataVisualization.Charting; namespace Model { /// /// chart类 /// public class DataSourceChart { private int width; /// /// 宽度 /// public int Width { get { return width; } set { width = value; } } private int height; /// /// 高度 /// public int Height { get { return height; } set { height = value; } } private string title; /// /// 标题名 /// public string Title { get { return title; } set { title = value; } } private bool isNotEnable3D; /// /// 是否显示三维效果 /// public bool IsNotEnable3D { get { return isNotEnable3D; } set { isNotEnable3D = value; } } private SeriesChartType chartType; /// /// 图形类型 /// public SeriesChartType ChartType { get { return chartType; } set { chartType = value; } } private List dataSourceTeams; /// /// 数据点集合 /// public List DataSourceTeams { get { return dataSourceTeams; } set { dataSourceTeams = value; } } } }