Hi
Why Can't I see the Labels on the HorizBarSeries??
The Labels are only visible for only for two of the bars in the ThorizBar. For the remaining bars, the labels are hidden below the bars??
THorizBarSeries And Labels
THorizBarSeries And Labels
- Attachments
-
- THorizBarSeries.JPG (187.25 KiB) Viewed 8298 times
Re: THorizBarSeries And Labels
Hello Friis,
When you work with stack bars, the marks of bars are hidden bellow bars, except the last bar you draw, to achieve that you can see all marks of bars series you need enable the property of Marks OnTop for each series that allow you access in all marks. You can do something as next code:
I hope will helps.
Thanks,
Why Can't I see the Labels on the HorizBarSeries??
The Labels are only visible for only for two of the bars in the ThorizBar. For the remaining bars, the labels are hidden below the bars??
When you work with stack bars, the marks of bars are hidden bellow bars, except the last bar you draw, to achieve that you can see all marks of bars series you need enable the property of Marks OnTop for each series that allow you access in all marks. You can do something as next code:
Code: Select all
procedure TForm1.FormCreate(Sender: TObject);
begin
Chart1.View3D:=false;
Series1.FillSampleValues(3);
Series2.FillSampleValues(3);
Series3.FillSampleValues(3);
Series1.MultiBar :=mbStacked;
Series1.Marks.OnTop:=True;
Series2.Marks.OnTop:=True;
Series3.Marks.OnTop:=True;
end;
I hope will helps.
Thanks,
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Re: THorizBarSeries And Labels
Hi Sandre,
That works fantastic - Thank you!!
Can I move the label so that it is located on center for each bar??
As shown on the attached bar; the labels are located next to the individual bars; I would like to have the marks located on the center of each bar?
That works fantastic - Thank you!!
Can I move the label so that it is located on center for each bar??
As shown on the attached bar; the labels are located next to the individual bars; I would like to have the marks located on the center of each bar?
- Attachments
-
- ScreenDump2.JPG (214.58 KiB) Viewed 8247 times
Re: THorizBarSeries And Labels
Hi Friis,
Give it a try to the MarksOnBar and MarksLocation properties:
http://www.teechart.net/support/viewtop ... bar#p59286
Give it a try to the MarksOnBar and MarksLocation properties:
http://www.teechart.net/support/viewtop ... bar#p59286
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |