Top Line in Graph

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Kris C
Newbie
Newbie
Posts: 59
Joined: Fri Jan 13, 2023 12:00 am

Top Line in Graph

Post by Kris C » Thu Jun 22, 2023 11:21 am

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 10640 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 10640 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.

Christopher
Guru
Posts: 1603
Joined: Fri Nov 15, 2002 12:00 am

Re: Top Line in Graph

Post by Christopher » Thu Jun 22, 2023 4:38 pm

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 10631 times
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

Post Reply