Hi,
I'm having an issue with how my standard barchart is drawing - Image below:
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
Barchart Strange Border
Re: Barchart Strange Border
Hello,
Could you please arrange a simple example project we can run as-is to reproduce the problem here?
Thanks in advance.
Could you please arrange a simple example project we can run as-is to reproduce the problem here?
Thanks in advance.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Barchart Strange Border
I have attached a project that shows the behavior, please see Tchart2 in the project for the example.
Thanks
Thanks
- Attachments
-
- ChartTestSteema.zip
- (5.71 KiB) Downloaded 905 times
Re: Barchart Strange Border
Hello,
I see you've set:
Changing it for this I believe has the effect you desire:
I see you've set:
Code: Select all
.Aspect.Chart3DPercent = 0
Code: Select all
.Aspect.View3d = False
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Barchart Strange Border
Thank you Yeray, that was it!