SymbolViewBase.Options Property
In This Article
Provides access to the settings that specify the symbol view position on the symbols panel.
Namespace: DevExpress.Xpf.Gauges
Assembly: DevExpress.Xpf.Gauges.v24.2.dll
NuGet Package: DevExpress.Wpf.Gauges
#Declaration
public SymbolOptions Options { get; set; }
#Property Value
Type | Description |
---|---|
Symbol |
A Symbol |
#Remarks
Use the Options property to specify the SymbolOptions.Margin, SymbolOptions.SkewAngleX and SymbolOptions.SkewAngleY properties for the current symbol view type of the DigitalGaugeControl.
#Example
The following example illustrates how to customize options of the MatrixView8x14 object.
<dxga:MatrixView8x14.Options>
<dxga:SymbolOptions SkewAngleX="5" SkewAngleY="5" />
</dxga:MatrixView8x14.Options>
See Also