Skip to main content

XRChart.ImageType Property

Specifies how XRChart contents are rendered.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v23.2.dll

NuGet Package: DevExpress.Reporting.Core

Declaration

[DefaultValue(ChartImageType.Metafile)]
[SRCategory(ReportStringId.CatAppearance)]
public ChartImageType ImageType { get; set; }

Property Value

Type Default Description
ChartImageType Metafile

A ChartImageType enumeration value, specifying how a chart is rendered in a report.

Remarks

Use the ImageType property to specify whether a chart should be internally rendered as a metafile or bitmap in a report.

  • If this property is set to ChartImageType.Metafile (the default value), the quality of the rendered image is always good, but in particular cases some details of the control can be lost.
  • If this property is set to ChartImageType.Bitmap, the quality of the rendered image is sometimes poor, but it allows a control to be drawn more precisely.
See Also