Skip to main content

SymbolViewBase.Options Property

Provides access to the settings that specify the symbol view position on the symbols panel.

Namespace: DevExpress.Xpf.Gauges

Assembly: DevExpress.Xpf.Gauges.v23.2.dll

NuGet Package: DevExpress.Wpf.Gauges

Declaration

public SymbolOptions Options { get; set; }

Property Value

Type Description
SymbolOptions

A SymbolOptions object that contains the settings of the symbol view type.

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.

View Example

<dxga:MatrixView8x14.Options>
    <dxga:SymbolOptions SkewAngleX="5" SkewAngleY="5" />
</dxga:MatrixView8x14.Options>
See Also