Hi Georgi,
Thanks for the reply.
What I'm trying to do is, I want to show some sales data across different geo locations in RadBulletGraph.
Till the values are in positive the mark for the value is shown. But when value is negative I am not able to see the mark for value.
Also is there any property for BulletGraph which we can use to show the value as tooltip.
Please find below the code which I am using for creating BulletGraph. Also PFA the screenshot of BulletGraph which I have created.
<telerik:RadBulletGraph FeaturedMeasureStartValue="0"
EndValue="150"
TickStep="30"
LabelStep="30"
LabelOffset="10"
FeaturedMeasureThickness="6"
LabelTemplate="{StaticResource LabelTemplate}"
TickTemplate="{StaticResource TickTemplate}"
ComparativeMeasureTemplate="{StaticResource EmptyTemplate}"
FeaturedMeasureAlternativeTemplate="{StaticResource EmptyTemplate}"
Height="180"
Width="40"
ComparativeMeasure="0">
<telerik:RadBulletGraph.QualitativeRanges>
<telerik:BarIndicatorSegment Stroke="{StaticResource GoodBrush}" Thickness="20"/>
<telerik:BarIndicatorSegment Stroke="{StaticResource SatisfactoryBrush}" Thickness="20"/>
<telerik:BarIndicatorSegment Stroke="Yellow" Thickness="20"/>
</telerik:RadBulletGraph.QualitativeRanges>
</telerik:RadBulletGraph>