Skip to main content

CustomTickmarksPresentation.MinorTickmarkTemplate Property

Gets or sets a template that configures the minor tickmark appearance. This is a dependency property.

Namespace: DevExpress.Xpf.Gauges

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

NuGet Package: DevExpress.Wpf.Gauges

Declaration

public ControlTemplate MinorTickmarkTemplate { get; set; }

Property Value

Type Description
ControlTemplate

A control template that specifies the minor tickmark visual structure.

Example

This example demonstrates how to define a custom tickmarks presentation.

<Window
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:local="clr-namespace:GaugesDemoApp"
        xmlns:dxga="http://schemas.devexpress.com/winfx/2008/xaml/gauges" 
        x:Class="GaugesDemoApp.MainWindow"
        Title="MainWindow" Height="300" Width="300">
    <Grid>
        <dxga:CircularGaugeControl>
            <dxga:CircularGaugeControl.Scales>
                <dxga:ArcScale>
                    <dxga:ArcScale.Needles>
                        <dxga:ArcScaleNeedle/>
                    </dxga:ArcScale.Needles>
                    <dxga:ArcScale.TickmarksPresentation>
                        <dxga:CustomTickmarksPresentation>
                            <dxga:CustomTickmarksPresentation.MajorTickmarkTemplate>
                                <ControlTemplate>
                                    <Ellipse Width="8" Height="8" RenderTransformOrigin="0.5,0.5" StrokeThickness="1" Stroke="Black" Fill="Red"/>
                                </ControlTemplate>
                            </dxga:CustomTickmarksPresentation.MajorTickmarkTemplate>
                            <dxga:CustomTickmarksPresentation.MinorTickmarkTemplate>
                                <ControlTemplate>
                                    <Rectangle Width="10" Height="4" RenderTransformOrigin="1,0.5" StrokeThickness="1" Stroke="Red" Fill="Lime"/>
                                </ControlTemplate>
                            </dxga:CustomTickmarksPresentation.MinorTickmarkTemplate>
                        </dxga:CustomTickmarksPresentation>
                    </dxga:ArcScale.TickmarksPresentation>
                </dxga:ArcScale>
            </dxga:CircularGaugeControl.Scales>
        </dxga:CircularGaugeControl>
    </Grid>
</Window>

The image below illustrates the result.

See Also