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

Need help for building Gauge control demo

2 Answers 33 Views
Gauge
This is a migrated thread and some comments may be shown as answers.
Madhan
Top achievements
Rank 1
Madhan asked on 18 Jul 2013, 12:51 PM
Hi Team,

we have purchased telerik Silverlight controls in 2010 and version name number is v.2010.1.603.1040,now I have a client requirement to build dashboard application with Gauge control in silverlight. I gone through telerik  website and found some examples but those are related to 2013 controls and if I try to apply those code I am getting missing referenced error.

Its a very urgent requirement for me and need to build demo app today itself. Can you please suggest how can I implement Gauge dashboard by providing C#  code and Xaml.

Please assist me ASAP?

if I want to upgrade the controls what are the steps I need to follow and shall I need to pay any extra amount for that?

Please confirm.

2 Answers, 1 is accepted

Sort by
0
Madhan
Top achievements
Rank 1
answered on 19 Jul 2013, 07:22 AM
Hi Team,

This is very important for me to get the details ASAP. Can you please send me a sample project to develop Gauge control in Silverlight C# using 2010 version?

Please help me asap?

Thank you in advance.
0
Andrey
Telerik team
answered on 22 Jul 2013, 02:36 PM
Hi,

In the 2011.Q3 release we introduced a new gauge control. It is almost new control redesigned from scratch. Some of its features are similar to the old control’s features but they are implemented in absolutely different way (using different set of properties), some features are completely new.

Our demo application now references new gauge control and demonstrates its features.

We strongly recommend using the new gauge control in new applications. We also would recommend replacing the old control with new one in existing applications if there is a timeframe for this task. To avoid cross-controls problems we’ve removed old control from the default Telerik namespace. But it still can be used in your XAML as following:

<UserControl x:Class="OldGaugeControl.MainPage"
    xmlns:gauge="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Gauge"
    xmlns:gauges="clr-namespace:Telerik.Windows.Controls.Gauges;assembly=Telerik.Windows.Controls.Gauge"
    mc:Ignorable="d"
    d:DesignHeight="300" d:DesignWidth="400">
    <Grid x:Name="LayoutRoot" Background="White">
        <gauge:RadGauge>
            <gauges:RadialGauge>
                <gauges:RadialScale Name="radialScale">
                    <gauges:IndicatorList>
                        <gauges:Needle Value="75" />
                    </gauges:IndicatorList>
                </gauges:RadialScale>
            </gauges:RadialGauge>
        </gauge:RadGauge>
    </Grid>
</UserControl>


Pay attention, the old gauge control is not developed since Q3.2011, so new features (like inline styling) aren't available for it.

Regards,
Andrey Murzov
Telerik
TRY TELERIK'S NEWEST PRODUCT - EQATEC APPLICATION ANALYTICS for SILVERLIGHT.
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely.
Sign up for Free application insights >>
Tags
Gauge
Asked by
Madhan
Top achievements
Rank 1
Answers by
Madhan
Top achievements
Rank 1
Andrey
Telerik team
Share this question
or