We recently upgraded our TeeChart dlls from version 4.15.07.01 to 4.2018.10.3 to fix a crash occurring on newer Android and iOS versions. This is a 3 year version leap, so with it came the expected visual changes and issues.
In the 2015 version our gantt chart it looked like this:
Using the 2018 TeeChart build it looks like this:
While the marks, bottom axis looks mostly the same and works fine, the borders and grid lines are missing.
I managed to restore the grid lines using:
Code: Select all
tChart.Axes.Bottom.Grid.DrawEvery = 1;
tChart.Axes.Bottom.Grid.Visible = true;
Is there any way to re-create such a border in v2018?
I've added a test app to this post with an example chart showcasing this issue.