xtrareports-devexpress-dot-xtrareports-dot-ui-dot-xrgauge-ea76ed7d.md
Specifies how XRGauge contents are rendered.
Namespace : DevExpress.XtraReports.UI
Assembly : DevExpress.XtraReports.v25.2.dll
NuGet Package : DevExpress.Reporting.Core
[DefaultValue(GaugeImageType.Metafile)]
[SRCategory(ReportStringId.CatAppearance)]
public GaugeImageType ImageType { get; set; }
<DefaultValue(GaugeImageType.Metafile)>
<SRCategory(ReportStringId.CatAppearance)>
Public Property ImageType As GaugeImageType
| Type | Default | Description |
|---|---|---|
| GaugeImageType | Metafile |
A GaugeImageType enumeration value, specifying how a gauge is rendered in a report.
|
Available values:
| 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.
|
Use the ImageType property to specify whether a gauge should be internally rendered as a metafile, an SVG image, or bitmap in a report.
See Also