New to Telerik UI for WinUI? Start a free 30-day trial
Qualitative Ranges
Updated on Mar 26, 2026
The BulletGraph supports different colored ranges that can be used to highlight portions of the scale, for example, when indicating bad, satisfactory, and good areas.
The ranges are described by the BarIndicatorSegment class and are added to the QualitativeRanges collection of RadBulletGraph. The bar segments are stacked one next to each other based on their Length values.
Populate the QualitativeRanges
XAML
<Grid xmlns:dataVisualization="using:Telerik.UI.Xaml.Controls.DataVisualization">
<dataVisualization:RadBulletGraph Width="300" Height="50" EndValue="100">
<dataVisualization:RadBulletGraph.QualitativeRanges>
<dataVisualization:BarIndicatorSegment Stroke="Red" Thickness="20" Length="30" />
<dataVisualization:BarIndicatorSegment Stroke="Orange" Thickness="20" Length="40" />
<dataVisualization:BarIndicatorSegment Stroke="Yellow" Thickness="20" Length="30" />
</dataVisualization:RadBulletGraph.QualitativeRanges>
</dataVisualization:RadBulletGraph>
</Grid>
The following image shows the result.
