Border in Gantt Chart
Posted: Wed Mar 06, 2019 11:48 am
Currently we are having an issue with a Gantt chart in our Xamarin.Android and Xamarin.iOS application.
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:
However, I cannot seem to restore the black border around the chart. I've tried the Wall properties, the Panel.BorderPen properties etc. but to no avail.
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.
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.