Hi Steema Support,
We are working on a project which is being created in silverlight and we are using TeeChart 2010 .NET SIlverlight version. We have some queries regarding Gauge Series as we need some customizations as mentioned in following lines:
1. Can we change the color of Value label of Gauge randomly. For example we want some of labels to be in green and rest in Red, as mentioned in following figure.
2. Can we add a label on the gauge as mentioned in following figure?
3. Can we change the color pattern of our TeeChart gauge as used in following figure?
Waiting for your valuable reply....
Thanks & Regards,
Planoresearch
Customizing Gauge series
Re: Customizing Gauge series
Hello Planoresearch,
If you have more questions about it, please let me know.
I hope will help.
Thanks,
I recommend take a look in this link where explain how do you do to create your custom Gauge and I think is the best solution to achieve as you want.1. Can we change the color of Value label of Gauge randomly. For example we want some of labels to be in green and rest in Red, as mentioned in following figure.
3. Can we change the color pattern of our TeeChart gauge as used in following figure?
In this case you can use Annotation tool to add the label in the middle of your Gauge. See some examples in All Features\Welcome !\Tools\Annotation.2. Can we add a label on the gauge as mentioned in following figure?
If you have more questions about it, please let me know.
I hope will help.
Thanks,
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
-
- Newbie
- Posts: 57
- Joined: Thu Jun 02, 2011 12:00 am
Re: Customizing Gauge series
Hi Sandra,
Thanks for your valuable link,We have gone through your link and annotation example, but it is not helping us.
Please provide any alternate solution for the query 2.
Thanks & Regards
Planoresearch
Thanks for your valuable link,We have gone through your link and annotation example, but it is not helping us.
Please provide any alternate solution for the query 2.
Thanks in advance.2. Can we add a label on the gauge as mentioned in figure attached first post?
Thanks & Regards
Planoresearch
Re: Customizing Gauge series
Hello Planoresearch,
The other option for you is use Steema.TeeChart.Drawing.Graphics3D.TextOut method and draw the text directly in the canvas in the x and y coordinates, you can use method in AfterDraw Event as do in next simple code:
I hope will help.
Thanks,
The other option for you is use Steema.TeeChart.Drawing.Graphics3D.TextOut method and draw the text directly in the canvas in the x and y coordinates, you can use method in AfterDraw Event as do in next simple code:
Code: Select all
void tChart1_AfterDraw(object sender, Steema.TeeChart.Drawing.Graphics3D g)
{
g.TextOut(150, 120, "Circular Demo");
}
Thanks,
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |