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

2011 Q3 Gauge - What happened to RadGauge

1 Answer 74 Views
Gauges
This is a migrated thread and some comments may be shown as answers.
Jim
Top achievements
Rank 1
Jim asked on 18 Nov 2011, 07:44 PM
I upgraded to the WPF 4.0 2001 Q3 Release.
Everything seems fine but gauge.

I don't even see the word "gauge" mentioned in the release notes so its hard to tell what is going on with this control.

It doesn't show up in the toolbox. It looks like there are now specific gauge controls instead.
I also noticed on the WPF demo application. Gauge is now mentioned as BETA

What is going on with this control. My current code looks like
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
<telerik:RadGuage

I do have refernces to both
Telerik.WindowsControls.DataVisualization
Telerik.WindowsControls.Gauge

1 Answer, 1 is accepted

Sort by
0
Andrey
Telerik team
answered on 23 Nov 2011, 09:37 AM
Hello Jim,

With 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 the new gauge control and demonstrates its features. We are working on the help topics so they will describe the features of the new control as well.
We strongly recommend using of the new gauge control in the new applications. We also would recommend replacing the old control with a new one in existing applications if there is a timeframe for this task. To avoid cross-controls problems we’ve removed the old control from the default Telerik namespace. But it still can be used in your XAML as following:
<Window x:Class="OldGaugeControl.MainWindow"
        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"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <gauge:RadGauge>
            <gauges:RadialGauge>
                <gauges:RadialScale Name="radialScale">
                    <gauges:IndicatorList>
                        <gauges:Needle Value="75" />
                    </gauges:IndicatorList>
                </gauges:RadialScale>
            </gauges:RadialGauge>
        </gauge:RadGauge>
    </Grid>
</Window>

Regards,
Andrey Murzov
the Telerik team

Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>

Tags
Gauges
Asked by
Jim
Top achievements
Rank 1
Answers by
Andrey
Telerik team
Share this question
or