8 Answers, 1 is accepted
Thank you for writing.
You can refer to our Demo application >> Gauges >> First look example where on a Timer.Tick the RadRadialGauge.Value is updated. Additionally, you can have a look at our Gauges >> Getting started help article >> Clock example. If you are still unable to achieve the exact requirement, please specify in details what you are trying to accomplish. Thus, we would be able to assist you further.
I hope this information helps. Should you have further questions, I would be glad to help.
Dess
Telerik
See What's Next in App Development. Register for TelerikNEXT.
Thank you for writing back.
Following the examples from the referred Demo application and online documentation, I have prepared a sample code snippet demonstrating how to manipulate the RadRadialGauge.Value property on a Timer.Tick. Note that the RadialGaugeNeedle.BindValue property is set to true in order to indicate that the needle's value is bound to the gauge's value. In the code snippet below the value is set to a random generated number just for the example. You can use any custom object's property according to your specific requirement:
Random rand =
new
Random();
public
Form1()
{
InitializeComponent();
Timer timer =
new
Timer();
timer.Interval = 1000;
timer.Tick+=timer_Tick;
timer.Start();
this
.radialGaugeNeedle1.BindValue =
true
;
}
private
void
timer_Tick(
object
sender, EventArgs e)
{
this
.radRadialGauge1.Value = rand.Next(0, 180);
}
The attached gif file illustrates the behavior on my end. If it does not suit your scenario, it would be greatly appreciated if you give us more details about the exact requirement that you trying to achieve when manipulating the needle. Thank you.
I hope this information helps. If you have any additional questions, please let me know.
Regards,
Dess
Telerik
See What's Next in App Development. Register for TelerikNEXT.
Reference to the subject it is stated that i am facing some issue in Radgridview. i want to insert RadialGauge in Gridview in Telerik UI winform using in Desktop App but it's not working.
it is requested that help / guidance may be provided that how to insert Radial gauge in Rad gridview in Winform.
Dear sir,
Reference to the subject it is stated that i am facing some issue in Radgridview. i want to insert RadialGauge in Gridview in Telerik UI winform using in Desktop App but it's not working.
it is requested that help / guidance may be provided that how to insert Radial gauge in Rad gridview in Winform.
Help / Guidance is needed in implementing Radial Gauge in Radgridview
i want to show RadialGauge in Gridview in Telerik UI winform using in Desktop App but it's not working.
i need like this image
it is requested that help / guidance may be provided that how to radRadial gauge in Rad gridview cell in Winform.
i want to show RadialGauge in Gridview in Telerik UI winform using in Desktop App but it's not working.
i need like this image
it is requested that help / guidance may be provided that how to radRadial gauge in Rad gridview cell in Winform.
Hello, Shah,
Your question has already been answered in the other thread you have posted a reply on the same topic. Please, see our answer there for more information: https://www.telerik.com/forums/add-user-control-to-gridview-column#BN13X4wd4ka-ciAFSSY87A
We kindly ask you to use just one thread for a specific problem to contact us. Posting the same questions numerous times slows down our response time because we will need to review and address two or more tickets instead of one. Moreover, threads are handled according to license and time of posting, so if it is an urgent problem, we suggest you use a support ticket, which would be handled before a forum thread.
Thank you for your understanding.
Regards,
Dess | Tech Support Engineer, Sr.
Progress Telerik