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

is it possible to change the scale range programmatically using VB

1 Answer 61 Views
Gauges
This is a migrated thread and some comments may be shown as answers.
Anoop
Top achievements
Rank 1
Anoop asked on 27 Apr 2011, 07:35 AM
<telerik:RadialScale Name="radialScale" Min="0" Max="12" MajorTicks="12">
                    <telerik:IndicatorList>

For example the user should enter the numbers in

Min = 0

Max =400

MajiorTick=4

 

I dnt want them to be fixed throw the XML, so is it possible to make it using VB by creating a property and bind it or such a thing?

 

Thanks in advance


1 Answer, 1 is accepted

Sort by
0
Andrey
Telerik team
answered on 29 Apr 2011, 03:09 PM
Hello Anoop,

Similar to any other WPF controls you can use the properties of the radial scale from code using the name of the control set from XAML:

Me.radialScale.Min = 0
Me.radialScale.Max = 400
Me.radialScale.MajorTicks = 4

I hope this helps.

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