Hello,
When there are many x-axis values in our chart, it appears as all black. I think it is because of the lines that run vertically on the chart.
The screenshot attachments explain it better. In the first screenshot, there are 10800 x-axis values which means 10800 lines, so it's a black blob. In the second screenshot which has 360 x-axis values, you can see the individual black lines that I think are causing the problem. I think I just need to know which property toggles those lines on and off.
The chart is fine when it is converted to a line chart because it does not have these lines. We are using TChart v7.12, in Delphi 2007. Many thanks for any help.
Doug
Area and bar charts area a black blob
Re: Area and bar charts area a black blob
Hi Doug,
Try these properties:
Try these properties:
Code: Select all
Series1.Pen.Visible:=false; //bar series' vertical lines / area series' top tines
Series1.AreaLinesPen.Visible:=false; //area series' vertical lines
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Area and bar charts area a black blob
Hi Yeray,
Sorted it! Thanks a million.
Doug
Code: Select all
AreaSeries.AreaLinesPen.Visible := false;
Doug