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)