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

Linear Gauge

1 Answer 43 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
macky
Top achievements
Rank 1
macky asked on 12 Jul 2010, 03:36 AM
Hi Telerik staff,


           Good Day!  I would to request a souce code or project only  for the Linear Guage. Because I don't have it on my project when I download the samples yesterday.

           On your demo website, you have 3 Linear gauges. And I only need one to make it easier to understand and modify it. 

           Please let me know if you will grant my request.

Thanks,
mac

1 Answer, 1 is accepted

Sort by
0
Accepted
Andrey
Telerik team
answered on 12 Jul 2010, 09:58 AM
Hi Macky,

The simplest XAML which shows linear gauge could look like this:

<UserControl x:Class="Telerik.RadGauge.Silverlight.MainPage"
     xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"           
     Width="1000" Height="800">
    <Grid x:Name="LayoutRoot" Background="White">
        <telerik:RadGauge Width="200" Height="500">
            <telerik:LinearGauge>
                <telerik:LinearScale Min="0" Max="100">
                    <telerik:IndicatorList>
                        <telerik:LinearBar Name="bar" Value="25" />
                    </telerik:IndicatorList>
                </telerik:LinearScale>
            </telerik:LinearGauge>
        </telerik:RadGauge>
    </Grid>
</UserControl>

You can find more information in our online help:

http://www.telerik.com/help/silverlight/creating-linear-gauge.html
http://www.telerik.com/help/silverlight/linear-scale-overview.html 

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
General Discussions
Asked by
macky
Top achievements
Rank 1
Answers by
Andrey
Telerik team
Share this question
or