08-25-2008 05:31 AM
I'm currently working on a tool which allows graph manipulation..... I want to keep the code generic, hence my following problem.
I need to be able to set the axes programatically to autoscale or not, but I have a slight problem. I can't find any way to determine the number of X-axes or Y-axes on a graph short of trying to set the index and wqaiting for an error. Is there not a better way to do this? Why is there no axis count property?
Shane.
08-25-2008 05:46 AM
Hi Shane,
you can use the error method to count the available scales before really using it. ![]()
Mike
08-25-2008 05:47 AM
Ah, that's true.
Since the number of axes can't change during run-time it's a one-off thing for each graph, right?
That's not so bad.
Thanks.
Shane.
08-25-2008 05:49 AM
Intaris wrote:Since the number of axes can't change during run-time it's a one-off thing for each graph, right?
...
yes, afaik it´s not possible to change it at runtime.
Mike