将图表转换为图像
Contents
[
Hide
]
Aspose.Cells - 将图表转换为图像
图表具有视觉吸引力,方便用户查看数据中的比较、模式和趋势。 Chart类的toImage方法将图表转换为图像文件,可保存到磁盘或流中。
C#
// Instantiating a Workbook object
Workbook workbook = new Workbook();
// Obtaining the reference of the first worksheet
WorksheetCollection worksheets = workbook.Worksheets;
Worksheet sheet = worksheets[0];
// Adding some sample value to cells
Cells cells = sheet.Cells;
Cell cell = cells["A1"];
cell.Value = 50;
cell = cells["A2"];
cell.Value = 100;
cell = cells["A3"];
cell.Value = 150;
cell = cells["B1"];
cell.Value = 4;
cell = cells["B2"];
cell.Value = 20;
cell = cells["B3"];
cell.Value = 50;
ChartCollection charts = sheet.Charts;
// Adding a chart to the worksheet
int chartIndex = charts.Add(ChartType.Pyramid, 5, 0, 15, 5);
Chart chart = charts[chartIndex];
//Save the chart image file.
chart.ToImage("AsposeChartImage.png", ImageFormat.Png);
下载运行代码
从以下任何社交编码网站下载将图表转换为图像
更多详情,请访问将图表转换为图像