Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

GaugeImageType Enum

Enumerates values that specify how the GaugeImageType control should be internally rendered in a report.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v24.2.dll

NuGet Package: DevExpress.Reporting.Core

#Declaration

public enum GaugeImageType

#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.

Svg

The control is rendered as vector graphics.

#Related API Members

The following properties accept/return GaugeImageType values:

#Remarks

Use this enumeration’s members to determine whether the specified XRGauge control should be internally rendered as a bitmap image, vector graphics (SVG), or as a metafile in a report.

See Also