This question is locked. New answers and comments are not allowed.
<telerikGridView:GridViewDataColumn Width="250" EditTriggers="None" HeaderTextAlignment="Center" > <telerikGridView:GridViewDataColumn.Header> <Grid Width="250" > <StackPanel Orientation="Horizontal" HorizontalAlignment="Center"> <TextBlock Text="{Binding ApplicationStrings.CurrentSuggested, Source={StaticResource ResourceWrapper}}" /> <TextBlock Text="{Binding ApplicationStrings.Suggested, Source={StaticResource ResourceWrapper}}" Foreground="Red" /> </StackPanel> </Grid> </telerikGridView:GridViewDataColumn.Header> <telerikGridView:GridViewDataColumn.CellTemplate> <DataTemplate> <telerikpresentation:RadHorizontalBulletGraph Width="150" Height="20" Minimum=".8" Maximum="1" QuantitativeScaleVisibility="Collapsed" ComparativeMeasure="{Binding ServiceLevelRecommended}" ComparativeMeasureBrush="Red" FeaturedMeasure="{Binding ServiceLevelCurrent}" > <telerikpresentation:RadHorizontalBulletGraph.QualitativeRanges> <telerikpresentation:QualitativeRange Brush="Orange" Value=".85" /> <telerikpresentation:QualitativeRange Brush="Aqua" Value=".9" /> <telerikpresentation:QualitativeRange Brush="LightGreen" Value="1"/> </telerikpresentation:RadHorizontalBulletGraph.QualitativeRanges> </telerikpresentation:RadHorizontalBulletGraph> </DataTemplate> </telerikGridView:GridViewDataColumn.CellTemplate> </telerikGridView:GridViewDataColumn>In the bullet graph demos, the FeaturedMeasure property is displayed as a "progress bar" that stretches from the lower limit until the bound FeatureMeasure value. This is how i want my own control to look. All of the displayed values will be between 80 and 100%, so I want to only display the latter range in order to amplify the differences. However, if I set Minimum (.8 in this case) the look of the FeaturedMeasure changes from being a progress bar to a tiny oval. I can't find any property or template to override this behavior. Is this the intended behavior of the control?