Page 1 of 1

Top Line in Graph

Posted: Thu Jun 22, 2023 11:21 am
by 16095093
Hello,

As they say, a picture is worth a thousand words. So, this post is going to rely on some screen shots.

GraphWithTopLine.png
Graph with Top Line
GraphWithTopLine.png (29.51 KiB) Viewed 10687 times
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.

GraphWithoutTopLine.png
Graph without Top Line
GraphWithoutTopLine.png (25.53 KiB) Viewed 10687 times
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.

Re: Top Line in Graph

Posted: Thu Jun 22, 2023 4:38 pm
by Christopher
Hello Kris,
Kris C wrote:
Thu Jun 22, 2023 11:21 am
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.
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;
        }
Screenshot from 2023-06-22 18-38-23.png
Screenshot from 2023-06-22 18-38-23.png (31.44 KiB) Viewed 10678 times