Data Table Missing values
Data Table Missing values
See attached image. The data table only shows the values every fourth bar. There seems to be ample room to draw the value. I have seen that if I reduce the number of points shown, the data table may draw correctly. But even with this sample there is sufficient room to draw the values. Is there some setting I need to adjust?
- Attachments
-
- Missing table values.jpg (188.17 KiB) Viewed 10304 times
Re: Data Table Missing values
Hello,
I've been able to reproduce it so I've added it to the public tracker (2389).
And I've already fixed it.
Since you own the sources, you can easily apply the fix without having to wait for the next maintenance release.
At line 628 on TeeDataTableTool.pas, substitute this line:
For these:
I've been able to reproduce it so I've added it to the public tracker (2389).
And I've already fixed it.
Since you own the sources, you can easily apply the fix without having to wait for the next maintenance release.
At line 628 on TeeDataTableTool.pas, substitute this line:
Code: Select all
tmpInc:=Trunc(CalcXYIncrement(SizeLabels));
Code: Select all
if Horizontal then
tmpInc:=Trunc(CalcXYIncrement(SizeLabels))
else
tmpInc:=Trunc(CalcXYIncrement(Abs(LabelsFont.Height)+Round(0.01*LabelsSeparation)));
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Data Table Missing values
That's fixed it. Thank you Yeray!
Mike Simmons
Mike Simmons
Re: Data Table Missing values
Hello Mike,
Thanks for confirming it!
Thanks for confirming it!
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |