Problems with horizontal area series
Posted: Thu May 19, 2005 5:53 am
1) I use series option "Color Each" and add points to this series with method "Add(X, Y, Color);". This ends with exception on draw.
I solve this problem by separating up data in several "single colored" series.
2) When scrolling series at runtime, element of series disappears, when part of this element moves out of the chart workarea.
I think that it depends on inverted Y axis. After I changed code to this:
this problem disappears, but Click and DoubleClick events of other series (Shape series) stop works.
Please tell me, how to add such elements correctly (when Y axis is inverted).
3) In horizontal area series often elements (in start of series), such as described in (2) looks incorrect.
When I use code
I can see dislocated rectangle approximately in 4 - 104 X values.
This bug is very serios and need to be fixed immediately !
Version of TeeChart .NET (1.1.1879.21176)
I solve this problem by separating up data in several "single colored" series.
2) When scrolling series at runtime, element of series disappears, when part of this element moves out of the chart workarea.
Code: Select all
series.Add(0, top);
series.Add(value, top);
series.Add(value, bottom);
series.Add(0, bottom);
Code: Select all
series.Add(0, bottom);
series.Add(value, bottom);
series.Add(value, top);
series.Add(0, top);
Please tell me, how to add such elements correctly (when Y axis is inverted).
3) In horizontal area series often elements (in start of series), such as described in (2) looks incorrect.
When I use code
Code: Select all
series.Add(0, 200);
series.Add(100, 200);
series.Add(100, 300);
series.Add(0, 300);
This bug is very serios and need to be fixed immediately !
Version of TeeChart .NET (1.1.1879.21176)