WEB开发网
开发学院软件开发C语言 C# 使用OWC生成图表 阅读

C# 使用OWC生成图表

 2009-06-11 08:32:00 来源:WEB开发网   
核心提示: myChart.SeriesCollection[0].SetData(OWC10.ChartDimensionsEnum.chDimValues, (int)OWC10.ChartSpecialDataSourcesEnum.chDataLiteral, strValue); //添加一

myChart.SeriesCollection[0].SetData(OWC10.ChartDimensionsEnum.chDimValues, (int)OWC10.ChartSpecialDataSourcesEnum.chDataLiteral, strValue);

//添加一个series

myChart.SeriesCollection.Add(1);

//给定series的名字

myChart.SeriesCollection[1].SetData(OWC10.ChartDimensionsEnum.chDimSeriesNames, (int)OWC10.ChartSpecialDataSourcesEnum.chDataLiteral, "出售");

//给定series的分类

myChart.SeriesCollection[1].SetData(OWC10.ChartDimensionsEnum.chDimCategories, (int)OWC10.ChartSpecialDataSourcesEnum.chDataLiteral, strCateory);

//给定具体值

myChart.SeriesCollection[1].SetData(OWC10.ChartDimensionsEnum.chDimValues, (int)OWC10.ChartSpecialDataSourcesEnum.chDataLiteral, strValue1);

//添加一个series

myChart.SeriesCollection.Add(2);

//给定series的名字

myChart.SeriesCollection[2].SetData(OWC10.ChartDimensionsEnum.chDimSeriesNames, (int)OWC10.ChartSpecialDataSourcesEnum.chDataLiteral, "总成交");

//给定series的分类

myChart.SeriesCollection[2].SetData(OWC10.ChartDimensionsEnum.chDimCategories, (int)OWC10.ChartSpecialDataSourcesEnum.chDataLiteral, strCateory);

//给定具体值

myChart.SeriesCollection[2].SetData(OWC10.ChartDimensionsEnum.chDimValues, (int)OWC10.ChartSpecialDataSourcesEnum.chDataLiteral, strValue2);

//输出成GIF文件

string strAbsolutePath = (Server.MapPath(".")) + @"\Images\tempChart.gif";

上一页  1 2 3 4  下一页

Tags:使用 OWC 生成

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接