When I create a bar chart with multiple bars, the series marks are obscured by some of the bars for some of the series. The marks are behind the other bars.
I am using v7.02 with Delphi 7
Series marks obscured
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Mark,
Can you please try using v7.07, which is the latest version available at the client area? It works fine for me here using this version.
Can you please try using v7.07, which is the latest version available at the client area? It works fine for me here using this version.
Best Regards,
Narcís Calvet / 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 |
Series marks obscured
I am using v7.07 and it still happens
If you add a stacked bar chart with two series and turn on the series marks, the marks for the lower series appear behind the top series. Curiously it only happends when 3D is turned OFF.
If you add a stacked bar chart with two series and turn on the series marks, the marks for the lower series appear behind the top series. Curiously it only happends when 3D is turned OFF.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Mark,
Ok, I didn't knew seires had to be stacked an in 2D . Now I could reproduce the problem here. Anyway, it is a known issue already listed on our defect list to be fixed for future releases. In the meantime you can solve this problem by moving the bottom series marks like this:
Ok, I didn't knew seires had to be stacked an in 2D . Now I could reproduce the problem here. Anyway, it is a known issue already listed on our defect list to be fixed for future releases. In the meantime you can solve this problem by moving the bottom series marks like this:
Code: Select all
Series1.Marks.ArrowLength:=-20;
Series1.Marks.Arrow.Visible:=false;
Best Regards,
Narcís Calvet / 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 |