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

Number Display fro Radial Gauge

1 Answer 49 Views
Gauge
This is a migrated thread and some comments may be shown as answers.
Madhu
Top achievements
Rank 1
Madhu asked on 30 Mar 2010, 10:00 PM
Hi,

          am using the Radial scale interactivity control for strength match on text.When I use the below to display the numbers around the scale its not displaying in design mode of XAML.Like the numbers around the scale (0,10,20,30--100).Infact I cannot see any numbers.

Below is the code I have been using


<Grid x:Name="LayoutRoot" Background="White">
        <control:RadGauge x:Name="radGauge" Width="240" Height="240">
            <gauge:RadialGauge>
                <gauge:RadialScale x:Name="radialScale">

                    <gauge:RadialScale.MajorTick>
                        <gauge:MajorTickProperties Length="0.1" />
                    </gauge:RadialScale.MajorTick>
                    <gauge:RadialScale.MiddleTick>
                        <gauge:MiddleTickProperties Length="0.07" />
                    </gauge:RadialScale.MiddleTick>
                    <gauge:RadialScale.MinorTick>
                        <gauge:MinorTickProperties Length="0.05" />
                    </gauge:RadialScale.MinorTick>

                    <gauge:RadialScale.Label>
                        <gauge:LabelProperties Location="Inside" FontSize="15" />
                    </gauge:RadialScale.Label>

                    <gauge:IndicatorList>
                        <gauge:RadialBar x:Name="bar"  Value="50" FontStretch="Normal" Foreground="Red" />
                        <gauge:Marker x:Name="marker" Location="OverCenter" Value="85" IsAnimated="True" BorderThickness="1" Opacity="10" />
                        <gauge:Needle x:Name="needle" IsAnimated="true"
                                ValueChanged="IndicatorValueChanged" />
                    </gauge:IndicatorList>
                </gauge:RadialScale>
            </gauge:RadialGauge>
        </control:RadGauge>

            
        
    </Grid>

1 Answer, 1 is accepted

Sort by
0
Andrey
Telerik team
answered on 02 Apr 2010, 04:48 PM
Hello Mark,

We've opened the XAML you sent us in design mode of VS 2008. It works as expected. The labels are displayed.

Can you provide more details about your development environment?

Best wishes,
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
Gauge
Asked by
Madhu
Top achievements
Rank 1
Answers by
Andrey
Telerik team
Share this question
or