Zoom doesn't work if series contains very small values
Posted: Wed Nov 19, 2008 6:25 am
Hi,
I've the following code to initial line series:
The zoom function does not work correctly. And then I trace the source of TChart. I found there is a limitation to check the min range when DoZoom. I think this limitation is inefficient for engineering or scientific data analysis. In many cases, the measurement data is extra large or small. I suggest to perform this limitation via programmer but not use a const value there.
The is very serious issue for my product. Customer is complain about it still.
- Erison
I've the following code to initial line series:
Code: Select all
line1.Clear();
line1.Add(4.48E-13, "AK945");
line1.Add(4.336E-13, "AK95P");
line1.Add(3.508E-13, "AK98Q");
line1.Add(4.724E-13, "AK9GG");
line1.Add(8.232E-13, "AK974");
line1.Add(4.476E-13, "AK9J0");
line1.Add(4.512E-13, "AK95T");
line1.Add(3.152E-13, "AK977");
line1.Add(2.976E-13, "AK95Y");
line1.Add(2.98E-13, "AK99W");
line1.Add(3.496E-13, "AK9FF");
The is very serious issue for my product. Customer is complain about it still.
- Erison