New to Telerik UI for WinUIStart a free 30-day trial

Scale Ticks

Updated on Mar 26, 2026

The BulletGraph enables you to control the appearance of its scale ticks.

Tick Interval

To set the interval between two adjacent ticks on the scale, use the TickStep property.

Set the TickStep

XAML
<Grid xmlns:dataVisualization="using:Telerik.UI.Xaml.Controls.DataVisualization">
	<dataVisualization:RadBulletGraph Height="50" Width="300" StartValue="0" EndValue="100" TickStep="25" />
</Grid>

The following image shows a TickStep set to 25.

WinUI RadBulletGraph RadBulletGraph-TickStep

Styling the Ticks

To change the appearance of the scale ticks, use the TickTemplate property.

Set the TickTemplate

XAML
<Grid xmlns:dataVisualization="using:Telerik.UI.Xaml.Controls.DataVisualization">
	<dataVisualization:RadBulletGraph Height="50" Width="300" StartValue="0" EndValue="100" TickStep="25">
		<dataVisualization:RadBulletGraph.TickTemplate>
			<DataTemplate>
				<StackPanel Orientation="Horizontal">
					<Ellipse Fill="Red" Height="5" Width="5"/>         
				</StackPanel>
			</DataTemplate>
		</dataVisualization:RadBulletGraph.TickTemplate>
	</dataVisualization:RadBulletGraph>
</Grid>

The following image shows the result.

WinUI RadBulletGraph RadBulletGraph-TickTemplate

In this article
Tick IntervalStyling the Ticks
Not finding the help you need?
Contact Support