Displaying decimal value problem on a Gauge

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Solutions Gallery BV
Newbie
Newbie
Posts: 25
Joined: Thu Dec 27, 2007 12:00 am

Displaying decimal value problem on a Gauge

Post by Solutions Gallery BV » Wed May 21, 2008 1:34 pm

Hi All,

We had recently started using steema software. I had no problems with charts but gauges. It might be a simple questions ; how I am going to show 2.3 or 4.2 values on gauges. It seems like rounding without my authorization.
On my chart min value = 0 and Max value is = 10
Increment value is = 1
My value which I would like show it on the gauge is 3.4

However, when I run the application I see the value is rounded to 3 instead of showing 3.4
If I change the value to 3.5 the gauge itself rounds it to 4.

Is there any way to display decimal values on gauge ?

BTW : It would have been great if we could attached a picture on this form.[/url]

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Wed May 21, 2008 2:10 pm

Hi Solutions Gallery BV,

Thanks for reporting, this works fine using Gauges series but not with CircularGauge:

Code: Select all

			Steema.TeeChart.Styles.Gauges gauges1 = new Steema.TeeChart.Styles.Gauges(tChart1.Chart);
			//Steema.TeeChart.Styles.CircularGauge gauges1 = new Steema.TeeChart.Styles.CircularGauge(tChart1.Chart);
			gauges1.Minimum = 0;
			gauges1.Maximum = 10;
			gauges1.GetVertAxis.Increment = 1;
			gauges1.Value = 3.5;
This is a bug (TF02013062) that I have added to our defect list to be fixed for next releases.
BTW : It would have been great if we could attached a picture on this form.
You can already add a picture using the Img tag and posting the picture into a web server or posting your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Solutions Gallery BV
Newbie
Newbie
Posts: 25
Joined: Thu Dec 27, 2007 12:00 am

Next release

Post by Solutions Gallery BV » Wed May 21, 2008 3:06 pm

Thanks for the quick reply,

There is one small question I still need to ask; when are you planning to come up with new release ? We would like to go live with our new software as soon as possible. I am afraid that due to this kind of problems might slow us down.

Thanks again.

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Thu May 22, 2008 8:13 am

Hi Solutions Gallery BV,

We don't have a date fixed for the next maintenance release. However, looking at TeeChart for .NET v3 release notes you can see we have been publishing a new version approximatelly every month. Considering last was published earlier in the week you may expect it to be out in about a month.

I recommend you to be aware at this forum or subscribe to our RSS feed for new release announcements.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply