摘要: 首先在VS2005----》网站----》添加引用----》com----->microsoft office web components privatevoidgetchart(DataTabledt, int rows){try{intcount=dt.Rows.Count;if (count < 3) { divchart.InnerHtml = "<span style='color:red'>数据少于3条,无法生成图表!</span>";return; }//存放月string[]MonNum=newstrin 阅读全文
posted @ 2011-05-11 14:56 94cool 阅读(286) 评论(0) 推荐(0)
摘要: 设置如下时间刻度:ChartAxisGroupingEnum.chAxisGroupingManual;ChartAxisUnitTypeEnum.chAxisUnitMonth;需要在SetData后面加上上面属性,否则会出现参数无效问题:InsertChart.SeriesCollection.Add(0); InsertChart.SeriesCollection[0].DataLabelsCollection.Add(); InsertChart.SeriesCollection[0].DataLabelsCollection[0].HasValue = true; InsertCha 阅读全文
posted @ 2011-05-11 14:52 94cool 阅读(361) 评论(0) 推荐(0)