I am generating a series of charts directly from a Delphi (7) program. For one of them, I want the border to be invisible. So, I use Chart.Border.Visible := False;. Then, the left and top border vanishes, but there are still a remant left of the left and bottom one. If I look closely ate the chart with the border in it, it seems that the left and bottom borter is a little bit thicker than the other two, but is not a shadow (I think).
How can I completely remove the border ?
Tom
Border for a chart
Try the following code:
Code: Select all
Chart1.Border.Visible := False;
Chart1.BevelWidth := 0;
Marjan Slatinek,
http://www.steema.com
http://www.steema.com
Hi.
Which Teechart version are you using ? If this doesn't work, try setting inner and outer bevel style to bvNone.
Which Teechart version are you using ? If this doesn't work, try setting inner and outer bevel style to bvNone.
Marjan Slatinek,
http://www.steema.com
http://www.steema.com