In the image below, labels ("A") are being dropped because the chart is not wide enough. I have a couple of questions:
1) I remember there is a margin setting somewhere that increases the likelihood that they will be drawn (years ago support told me about it). Do you know what that is?
2) Also, is there any way to reduce the amount of space on the left and right ("B")? I would think would increase the chances of the labels being included, right?
Thank you
Ed Dressel
Chart Drops Bar Labels
Chart Drops Bar Labels
Thanks,
Ed Dressel
Ed Dressel
Re: Chart Drops Bar Labels
Hello,
It would be helpful if you could post the code to generate the chart you are showing us so we can reproduce the situation as-is.
It would be helpful if you could post the code to generate the chart you are showing us so we can reproduce the situation as-is.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Chart Drops Bar Labels
A demo is attached.
- Attachments
-
- Marks too wide.zip
- (6.95 KiB) Downloaded 948 times
Thanks,
Ed Dressel
Ed Dressel
Re: Chart Drops Bar Labels
Hello,
Indeed setting thinner bars seems to help:
Code: Select all
for i:=0 to chrRothConvert.SeriesCount-1 do
TBarSeries(chrRothConvert[i]).BarWidthPercent:=50;
In your dfm I see you've set the bottom axis MinimumOffset and MaximumOffset to 48. Removing that reduces that space and you don't even need to set the BarWidthPercent to 50 to see all the labels:
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |