Page 1 of 1

Barchart Strange Border

Posted: Tue Oct 18, 2016 3:02 pm
by 16679323
Hi,

I'm having an issue with how my standard barchart is drawing - Image below:
Image

There is a darkened line on the top and right side of the bar that I can't seem to get rid of. The only way to hide it is to use a barpen around the bar but I do not want borders around the bars - just a flat single color bar. How can I achieve this?

I have tried these properties without success
chart3DPercent = 0
asBar.BarPen.Visible = False
asBar.Shadow.Visible = False

Thanks

Re: Barchart Strange Border

Posted: Tue Oct 18, 2016 4:08 pm
by yeray
Hello,

Could you please arrange a simple example project we can run as-is to reproduce the problem here?
Thanks in advance.

Re: Barchart Strange Border

Posted: Tue Oct 18, 2016 9:15 pm
by 16679323
I have attached a project that shows the behavior, please see Tchart2 in the project for the example.

Thanks

Re: Barchart Strange Border

Posted: Wed Oct 19, 2016 9:42 am
by yeray
Hello,

I see you've set:

Code: Select all

    .Aspect.Chart3DPercent = 0
Changing it for this I believe has the effect you desire:

Code: Select all

    .Aspect.View3d = False

Re: Barchart Strange Border

Posted: Wed Oct 19, 2016 3:55 pm
by 16679323
Thank you Yeray, that was it!