ArcScaleLayerCollection Class
Namespace: DevExpress.Xpf.Gauges
Assembly: DevExpress.Xpf.Gauges.v24.1.dll
NuGet Package: DevExpress.Wpf.Gauges
Declaration
Related API Members
The following members return ArcScaleLayerCollection objects:
Remarks
Each arc scale can hold a collection of layers returned by the ArcScale.Layers property and represented by the ArcScaleLayerCollection class. Each collection item is an instance of the ArcScaleLayer class and can be accessed via the GaugeDependencyObjectCollectionBase<T>.Item property of an ArcScaleLayerCollection object.
For more information on layers, refer to the Layers (Circular Scale) document.
Example
This example demonstrates how to specify a custom template for the layer.
<dxga:ArcScale.Layers>
<dxga:ArcScaleLayer>
<dxga:ArcScaleLayer.Presentation>
<dxga:CustomArcScaleLayerPresentation
ScaleLayerTemplate="{StaticResource OscilloscopeScaleLayerTemplate}" />
</dxga:ArcScaleLayer.Presentation>
</dxga:ArcScaleLayer>
</dxga:ArcScale.Layers>
Inheritance
See Also