Hello,
As they say, a picture is worth a thousand words. So, this post is going to rely on some screen shots.
In the above image, note the top line that is present in the graph. It is "highlighted" by the red rectangle around it. This graph is using v2009.
In this image, note that the top line is not present. This happens for ALL our graphs, not just the one we have pointed out here. This image is using TeeChart released in April. We do plan to update to the latest to get recent bug fixes.
We have been unsuccessful in finding the setting to bring this line back.
Please let us know if there is a workaround or if you will need to look into this further. If possible, we'd like to have that line back so we have as much consistency with prior releases as possible.
Kind Regards,
Kris Culin
Bentley Systems, Inc.
Top Line in Graph
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: Top Line in Graph
Hello Kris,
I think this might be the back wall pen, e.g.
Code: Select all
public Form1()
{
InitializeComponent();
var bar = new Line(tChart1.Chart);
bar.FillSampleValues();
tChart1.CurrentTheme = ThemeType.TeeChart;
tChart1.Walls.Back.Visible = true;
tChart1.Walls.Back.Pen.Visible = true;
tChart1.Walls.Back.Pen.Width = 3;
tChart1.Walls.Back.Pen.Color = Color.Red;
}
Best Regards,
Christopher Ireland / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |