图表渲染

创建图表

Aspose.Cells API支持创建各种类型的Excel图表,详细信息请参阅创建和自定义Excel图表专题。为了演示如何使用Aspose.Cells API以图像和PDF格式呈现图表,我们将根据以下片段创建一个列类型的图表。

渲染图表

Aspose.Cells API支持将Excel图表转换为图像和PDF格式,而无需额外的工具或应用程序。为了提供渲染支持,Chart类已公开了toImagetoPdf方法,具有各种重载以最好地满足应用程序的要求。

将图表渲染为图像

Chart.toImage方法具有各种重载,以支持简单和高级渲染。如果应用程序要求以其默认尺寸渲染图表,建议您使用Chart.toImage方法。

还可以使用高级设置将图表渲染为图像。Aspose.Cells API公开了Chart.toImage方法的重载版本,该版本可以接受ImageOrPrintOptions的实例,同时允许指定参数,如分辨率、渲染提示、图像格式等。

将图表渲染为PDF

为了将图表渲染为PDF格式,Aspose.Cells API公开了Chart.toPdf方法,可以将结果PDF存储在磁盘路径或输出流的实例中。

支持的图表类型的渲染

目前不支持渲染的一些图表类型。此类图表类型在下表的Supported列中包含N

图表类型 图表子类型 支持
Column Column Y
  ColumnStacked Y
  Column100PercentStacked Y
  Column3DClustered Y
  Column3DStacked Y
  Column3D100PercentStacked Y
  Column3D Y
Bar Bar Y
  BarStacked Y
  Bar100PercentStacked Y
  Bar3DClustered Y
  Bar3DStacked Y
  Bar3D100PercentStacked Y
Line Line Y
  LineStacked Y
  Line100PercentStacked Y
  LineWithDataMarkers Y
  LineStackedWithDataMarkers Y
  Line100PercentStackedWithDataMarkers Y
  Line3D Y
Pie Pie Y
  Pie3D Y
  PiePie Y
  PieExploded Y
  Pie3DExploded Y
  PieBar Y
Scatter Scatter Y
  ScatterConnectedByCurvesWithDataMarker Y
  ScatterConnectedByCurvesWithoutDataMarker Y
  ScatterConnectedByLinesWithDataMarker Y
  ScatterConnectedByLinesWithoutDataMarker Y
Area Area Y
  AreaStacked Y
  Area100PercentStacked Y
  Area3D Y
  Area3DStacked Y
  Area3D100PercentStacked Y
Doughnut Doughnut Y
  DoughnutExploded Y
Radar Radar Y
  RadarWithDataMarkers Y
  RadarFilled Y
Surface Surface3D N
  SurfaceWireframe3D N
  SurfaceContour N
  SurfaceContourWireframe N
Bubble Bubble Y
  Bubble3D N
Stock StockHighLowClose Y
  StockOpenHighLowClose Y
  StockVolumeHighLowClose Y
  StockVolumeOpenHighLowClose Y
Cylinder Cylinder Y
  CylinderStacked Y
  Cylinder100PercentStacked Y
  CylindricalBar Y
  CylindricalBarStacked Y
  CylindricalBar100PercentStacked Y
  CylindricalColumn3D Y
Cone Cone Y
  ConeStacked Y
  Cone100PercentStacked Y
  ConicalBar Y
  ConicalBarStacked Y
  ConicalBar100PercentStacked Y
  ConicalColumn3D Y
Pyramid Pyramid Y
  PyramidStacked Y
  Pyramid100PercentStacked Y
  PyramidBar Y
  PyramidBarStacked Y
  PyramidBar100PercentStacked Y
  PyramidColumn3D Y
BoxWhisker BoxWhisker Y
Funnel Funnel Y
ParetoLine ParetoLine Y
Sunburst Sunburst Y
Treemap Treemap Y
Waterfall Waterfall Y
Histogram Histogram Y
Map Map N

高级主题