ASE Home Page Products Download Purchase Support About ASE
ChartDirector Support
Forum HomeForum Home   SearchSearch

Message ListMessage List     Post MessagePost Message

  addmark and 3d plot area
Posted by Haim on Jun-10-2014 03:34
Attachments:
Hello
I have a 3d barchart plotarea and I want to have gridlines not on a bars, but between
bars see images:
1st picture - it's what I need
2nd picture - when I add addmark it will go as straight  line, not bend , like in 1st pic

so, I am not drawing gridlines at all ( unless exists function to shift gridlines) and I am
adding gridlines manually using addmark.
is it possible to add addmark and have it bend in the bottom?
thanks
p1.png
p2.png

  Re: addmark and 3d plot area
Posted by Peter Kwan on Jun-11-2014 01:26
Hi Haim,

You can use addMark  to add the mark line, and use Mark.setDrawOnTop(false) to draw the
mark lines at the front. This should achieve what you want. For example, in Java, it is like:

c.xAxis().addMark(2.5, 0xff0000).setDrawOnTop(false);

Hope this can help.

Regards
Peter Kwan

  Re: addmark and 3d plot area
Posted by Haim on Jun-17-2014 01:27
thanks!