This is a migrated thread and some comments may be shown as answers.

Half Circle Gauges with Numeric Indicator

1 Answer 101 Views
Gauges
This is a migrated thread and some comments may be shown as answers.
Guy
Top achievements
Rank 1
Guy asked on 25 Aug 2010, 02:33 PM
Hi,
   Do you have any example for Half Circle Gauges with Numeric Indicator?
   I can't find one. 
   When tried to do it myself, the digits overrides the arrow indicator. It doesn't look nice.
   Any examples? Any ideas?

Guy.

1 Answer, 1 is accepted

Sort by
0
Andrey
Telerik team
answered on 27 Aug 2010, 07:52 AM
Hi Guy,

Like most of the WPF controls the RadGauge shows child elements in the XAML sequence. So if you'd like to have needle on top of the numeric indicator, then numeric indicator should be listed BEFORE the needle in the XAML. For example:
<telerik:IndicatorList>
    <telerik:NumericIndicator Top="0.4" 
              Left="0.4" 
              RelativeHeight="0.1"
              RelativeWidth="0.4">
        <telerik:NumberPosition />
        <telerik:NumberPosition />
        <telerik:NumberPosition />
        <telerik:NumberPosition />
    </telerik:NumericIndicator>
    <telerik:Needle Name="needle" />
</telerik:IndicatorList>


Regards,
Andrey Murzov
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
Gauges
Asked by
Guy
Top achievements
Rank 1
Answers by
Andrey
Telerik team
Share this question
or