Skip to main content
A newer version of this page is available. .

ChartImageType Enum

Specifies how the XRChart control should be internally rendered in a report.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v20.1.dll

NuGet Packages: DevExpress.Reporting.Core, DevExpress.WindowsDesktop.Reporting.Core

Declaration

public enum ChartImageType

Members

Name Description
Metafile

The control is rendered as a metafile. In this case the quality of the rendered image is always good, but in some cases some details of the control may be lost.

Bitmap

The control is rendered as a bitmap. In this case the quality of the rendered image is sometimes poor, but it allows a control to be drawn more precisely.

Related API Members

The following properties accept/return ChartImageType values:

Remarks

Use this enumeration’s members to determine whether the specified XRChart control should be rendered as an image or as a metafile in a report. This enumeration is used by the XRChart.ImageType property.

See Also