Hi,
There are few issues we are coming across w.r.t. log scale when applied on any plot. Following is the scenario on which the issue arises.
1. Normal Plot without apply Log scale (Working fine)
See in Pic1.jpeg
2. When we check “Log Scale Left Y Axis” and “Log Scale Right Y Axis”, both the axis i.e. left and right are shifted below the end of the chart as shown below.
as in pic2.jpeg
3. When we adjust left axis position by adjusting End% as shown through the settings below, it looks like as shown in figure below.
pic3.jpeg
4. When we adjust left axis position by adjusting End% as shown through the settings below, it looks like as shown in figure below.
as in pic4.jpeg
Following is the code executed when log scale checkboxes are checked / unchecked
if(logScaleLeftXis.GetCheck())
m_chart1.GetAxis().GetLeft().SetLogarithmic(TRUE);
else
m_chart1.GetAxis().GetLeft().SetLogarithmic(FALSE);
Please suggest if any further setting needs to be done to by default stop the left and right scale to reach below the end of t-chart after log scale is selected.
Regards,
Amol
Log scale issue
Re: Log scale issue
Hi Amol,
I'm afraid the 4th picture has been lost, probably due to the 3 attachments per post limitation in these forums.
I'm trying to reproduce the problem here but the following code seems to work fine for me here (VB6 code).
I may be missing some relevant setting so it would be helpful if you could arrange a simple example project we can run as-is to reproduce the problem here.
thanks in advance.
PS: I've edited your post to move each picture next to the according explanation.
I'm afraid the 4th picture has been lost, probably due to the 3 attachments per post limitation in these forums.
I'm trying to reproduce the problem here but the following code seems to work fine for me here (VB6 code).
Code: Select all
Private Sub Form_Load()
TChart1.Aspect.View3D = False
TChart1.AddSeries scFastLine
Dim i As Integer
For i = 0 To 2500
TChart1.Series(0).AddXY i, i, "", clTeeColor
Next i
TChart1.Axis.Left.Logarithmic = True
TChart1.Panel.MarginUnits = muPixels
TChart1.Panel.MarginBottom = 100
End Sub
thanks in advance.
PS: I've edited your post to move each picture next to the according explanation.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Log scale issue
Hi Yeray
We researched the issue and found that it occurs only on specific sizes and data. One such combination is there in the project I am attaching with this post. We have one more data set which I may be able to upload on Monday.
It would be great if we can get a solution or workaround.
Thanking you in advance.
Yours Sincerely
Amol
We researched the issue and found that it occurs only on specific sizes and data. One such combination is there in the project I am attaching with this post. We have one more data set which I may be able to upload on Monday.
It would be great if we can get a solution or workaround.
Thanking you in advance.
Yours Sincerely
Amol
- Attachments
-
- TeeChartMFC.7z
- VC++ 2005 Project
- (67.84 KiB) Downloaded 695 times
Re: Log scale issue
Hi Amol,
I think I understand what's happening. It seems that the labels are not clipped to the according axis size when it's a logarithmic axis, so extra labels are drawn out of the ChartRect if there's enough margin. I've added it to the list (TV52016231).
I think I understand what's happening. It seems that the labels are not clipped to the according axis size when it's a logarithmic axis, so extra labels are drawn out of the ChartRect if there's enough margin. I've added it to the list (TV52016231).
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |