Barchart Strange Border

TeeChart for ActiveX, COM and ASP
Post Reply
vb62016
Newbie
Newbie
Posts: 3
Joined: Thu Oct 13, 2016 12:00 am

Barchart Strange Border

Post by vb62016 » Tue Oct 18, 2016 3:02 pm

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

Yeray
Site Admin
Site Admin
Posts: 9514
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Barchart Strange Border

Post by Yeray » Tue Oct 18, 2016 4:08 pm

Hello,

Could you please arrange a simple example project we can run as-is to reproduce the problem here?
Thanks in advance.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

vb62016
Newbie
Newbie
Posts: 3
Joined: Thu Oct 13, 2016 12:00 am

Re: Barchart Strange Border

Post by vb62016 » Tue Oct 18, 2016 9:15 pm

I have attached a project that shows the behavior, please see Tchart2 in the project for the example.

Thanks
Attachments
ChartTestSteema.zip
(5.71 KiB) Downloaded 725 times

Yeray
Site Admin
Site Admin
Posts: 9514
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Barchart Strange Border

Post by Yeray » Wed Oct 19, 2016 9:42 am

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
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

vb62016
Newbie
Newbie
Posts: 3
Joined: Thu Oct 13, 2016 12:00 am

Re: Barchart Strange Border

Post by vb62016 » Wed Oct 19, 2016 3:55 pm

Thank you Yeray, that was it!

Post Reply