Bug: Distance between left axis title and labels in 3D chart
Posted: Mon Dec 07, 2015 8:18 am
Hello,
we are currently upgrading from (a slightly modified) version 2013.08.130521 of TeeChart Pro. We are using C++Builder XE4 Enterprise.
In the version 2015.16.150901 the gap between the left axis title and the axis labels is insufficient if the chart is in 3D mode and Chart.Orthogonal is FALSE (see attached screenshot).
The longer the title text is the more the text moves to the right and overlaps with the axis labels.
It can be reproduced by creating a new project, dropping a chart and putting the following C++ code in the main form constructor:
A sample project for C++Builder XE4 is also attached.
Should I file a bug report? The bug may be related to the fix for the bug 1173
http://bugs.teechart.net/show_bug.cgi?id=1173.
This bug prevents us from upgrading. So either a source code fix or a release with a fix in the near future would be appreciated.
Thanks in advance
with best regards
Hans
we are currently upgrading from (a slightly modified) version 2013.08.130521 of TeeChart Pro. We are using C++Builder XE4 Enterprise.
In the version 2015.16.150901 the gap between the left axis title and the axis labels is insufficient if the chart is in 3D mode and Chart.Orthogonal is FALSE (see attached screenshot).
The longer the title text is the more the text moves to the right and overlaps with the axis labels.
It can be reproduced by creating a new project, dropping a chart and putting the following C++ code in the main form constructor:
Code: Select all
Chart1->View3DOptions->Orthogonal = false;
TPoint3DSeries* series_point3d( new TPoint3DSeries( Chart1 ) );
series_point3d->Name = L"Series3D";
series_point3d->ParentChart = Chart1;
series_point3d->UseColorRange = false;
for ( int i = 0; i < Chart1->SeriesCount(); ++i )
Chart1->Series[i]->FillSampleValues(5);
Chart1->LeftAxis->Title->Text = L"This is a longer axis title";
A sample project for C++Builder XE4 is also attached.
Should I file a bug report? The bug may be related to the fix for the bug 1173
http://bugs.teechart.net/show_bug.cgi?id=1173.
This bug prevents us from upgrading. So either a source code fix or a release with a fix in the near future would be appreciated.
Thanks in advance
with best regards
Hans