Timo Becker wrote:
Hello together
i'am trying to design a web application that serves a zoomable chart
with multiple axes.
I create those axes inside a For Loop like:
"
for i = 0 to eg.count
Dim Axes as Axis
Dim layer as linelayer
Axes = c.addAxis(...)
layer = c.addlinelayer2()
layer.addDataset(...)
...
Next
"
After the first run of the loop i call c.layout to be able to use
Axes.getMaxValue or getMinValue(). This works!
After the 2nd run of the loop i call c.layout again. Now i can't use
Axes.getMaxValue or getMinValue anymore. It always returns
0(min) 100(max) now.
So it seems like that after calling c.layout im no longer possible to
get values of my dynamic created axis.
so...what am i doing wrong? :/ How can i get the min / max Values
of dynamic created Axes?
Looking forward to hear from you guys
greetz
Timo