hello:
I find there are some differences between teechart graph and excel graph.
1. Radar graph
the radar graph in teechart is anticlockwise. but the radar in excel is clockwise.
Does there exist some method to set the radar graph in teechart to clockwise?
I don't find any.
2. teechart draw the first point of one series when x=0, (please refer to teechart.jpg)
but in excel, the first point is darwed when x=1. (please refer to excel.jpg)
Does there exist some method to change this behavior in teechart.
Thanks!
Difference between teechart graph and excel graph
Difference between teechart graph and excel graph
- Attachments
-
- excel.jpg (16.91 KiB) Viewed 8022 times
-
- teechart.JPG (17.1 KiB) Viewed 7932 times
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Difference between teechart graph and excel graph
Hi rubby,
We have already discussed this here.1. Radar graph
the radar graph in teechart is anticlockwise. but the radar in excel is clockwise.
Does there exist some method to set the radar graph in teechart to clockwise?
I don't find any.
Sure, use add method with X values starting at any value you like, for example:2. teechart draw the first point of one series when x=0, (please refer to teechart.jpg)
but in excel, the first point is darwed when x=1. (please refer to excel.jpg)
Does there exist some method to change this behavior in teechart.
Code: Select all
for (int i = 1; i < 10; i++) {
line1.add(i,i*i);
}
Best Regards,
Narcís Calvet / 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 |