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

radial gauge using real time data

8 Answers 247 Views
Gauges (RadialGauge, LinearGauge, BulletGraph)
This is a migrated thread and some comments may be shown as answers.
umer
Top achievements
Rank 1
umer asked on 29 Mar 2015, 08:01 AM
hello sir , im using your telerik library . sir we  are using the radial gauge but i want to use my real time data to move the needle of the gauge , can u please help me out how we can do the programming .

8 Answers, 1 is accepted

Sort by
0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 31 Mar 2015, 01:54 PM
Hello Umer,

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.
 
Regards,
Dess
Telerik
 

See What's Next in App Development. Register for TelerikNEXT.

 
0
umer
Top achievements
Rank 1
answered on 10 Apr 2015, 08:50 AM
sir this program is not related to our application , we are getting data from a eeg headset and trying to bring the data onto the gauge , how we can do this ??
0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 15 Apr 2015, 06:45 AM
Hello Umer,

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.

 
0
shah
Top achievements
Rank 1
answered on 20 Oct 2019, 01:01 PM
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.
0
shah
Top achievements
Rank 1
answered on 20 Oct 2019, 01:02 PM

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

0
shah
Top achievements
Rank 1
answered on 21 Oct 2019, 04:05 AM
Dear sir,
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.
0
shah
Top achievements
Rank 1
answered on 21 Oct 2019, 04:06 AM
Dear sir,
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.
0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 23 Oct 2019, 08:30 AM

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

Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Tags
Gauges (RadialGauge, LinearGauge, BulletGraph)
Asked by
umer
Top achievements
Rank 1
Answers by
Dess | Tech Support Engineer, Principal
Telerik team
umer
Top achievements
Rank 1
shah
Top achievements
Rank 1
Share this question
or