Page 1 of 1

Series marks obscured

Posted: Sun Nov 19, 2006 11:41 pm
by 9338344
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

Posted: Mon Nov 20, 2006 9:37 am
by narcis
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.

Series marks obscured

Posted: Tue Nov 21, 2006 2:36 am
by 9338344
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.

Posted: Tue Nov 21, 2006 9:19 am
by narcis
Hi Mark,

Ok, I didn't knew seires had to be stacked an in 2D :wink:. 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;