| View previous topic :: View next topic |
| Author |
Message |
Jim Miller Guest
|
Posted: Wed Oct 22, 2003 8:08 pm Post subject: How can I get tchart x axis to display values spread equally |
|
|
I have a tchart with x values like 1 2 3 7 8 20 21 I Now the
values are show with 1 2 3 overlaping then a gap and 7 8 overlapping
then a gap and 20 21 overlapping. I would like the values shown to be
evenly spread over the x axis. Can this be done?
Jim
|
|
| Back to top |
|
 |
Jim Miller Guest
|
Posted: Thu Oct 23, 2003 10:17 pm Post subject: Re: How can I get tchart x axis to display values spread equ |
|
|
I solved this program by loading data in code.
Jim
|
|
| Back to top |
|
 |
David Berneda Guest
|
Posted: Fri Oct 31, 2003 6:55 pm Post subject: Re: How can I get tchart x axis to display values spread equ |
|
|
Hi Jim
Use the X values for text instead of x position.
ie, instead of this:
Series1.AddXY( 123 , 456 );
do this:
Series1.Add( 456, '123' );
regards
david berneda
www.steema.com
"Jim Miller" <jmiller55 (AT) hotmail (DOT) com> wrote
| Quote: | I have a tchart with x values like 1 2 3 7 8 20 21 I Now the
values are show with 1 2 3 overlaping then a gap and 7 8 overlapping
then a gap and 20 21 overlapping. I would like the values shown to be
evenly spread over the x axis. Can this be done?
Jim
|
|
|
| Back to top |
|
 |
|