Page 1 of 1

Difference between teechart graph and excel graph

Posted: Thu Nov 21, 2013 7:22 am
by 17466735
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!

Re: Difference between teechart graph and excel graph

Posted: Thu Nov 21, 2013 11:07 am
by narcis
Hi rubby,
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.
We have already discussed this here.
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.
Sure, use add method with X values starting at any value you like, for example:

Code: Select all

        for (int i = 1; i < 10; i++) {
            line1.add(i,i*i);
        }