Skip to main content
A newer version of this page is available. .

ArcScaleLayerCollection Class

A collection that stores the layers of a particular arc scale.

Namespace: DevExpress.Xpf.Gauges

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

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Gauges, DevExpress.Wpf.Gauges

Declaration

public class ArcScaleLayerCollection :
    LayerCollection<ArcScaleLayer>

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.

View Example

<dxga:ArcScale.Layers>
    <dxga:ArcScaleLayer>
        <dxga:ArcScaleLayer.Presentation>
            <dxga:CustomArcScaleLayerPresentation 
                ScaleLayerTemplate="{StaticResource OscilloscopeScaleLayerTemplate}" />
        </dxga:ArcScaleLayer.Presentation>
    </dxga:ArcScaleLayer>
</dxga:ArcScale.Layers>
See Also