The top outer border does not appear.

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
goodsj
Newbie
Newbie
Posts: 18
Joined: Thu Jan 25, 2018 12:00 am

The top outer border does not appear.

Post by goodsj » Thu May 23, 2019 4:17 am

After version updating TeeChart 4.1.2012.1032 ==> 4.2018.11.27

The top outer border does not appear.

Can you guess what the problem is?

Trend_TeeChart_v4.1.2012.1032.JPG
Trend_TeeChart_v4.1.2012.1032.JPG (66.44 KiB) Viewed 14931 times
TO
Trend_TeeChart_v4.2018.11.27.JPG
Trend_TeeChart_v4.2018.11.27.JPG (65.75 KiB) Viewed 14931 times

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

Re: The top outer border does not appear.

Post by Christopher » Thu May 23, 2019 10:41 am

Hello,
goodsj wrote:
Thu May 23, 2019 4:17 am
Can you guess what the problem is?
Do you have the Back Wall set to visible? Using the following code works as expected here:

Code: Select all

        public Form1()
        {
            InitializeComponent();
            InitializeChart();
        }

        private void InitializeChart()
        {
            tChart1.Series.Add(typeof(Line)).FillSampleValues();
            tChart1.Walls.Back.Visible = true;
            tChart1.Walls.Back.Pen.Color = Color.Red;
        }
TeeChartProNuget_EiKdp4B4uy.png
TeeChartProNuget_EiKdp4B4uy.png (16.22 KiB) Viewed 14925 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

goodsj
Newbie
Newbie
Posts: 18
Joined: Thu Jan 25, 2018 12:00 am

Re: The top outer border does not appear.

Post by goodsj » Mon May 27, 2019 6:18 am

Hello.

I tried following the attached code above , but it doesn't work. :|
There is no change..

Do you have any other ideas?

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

Re: The top outer border does not appear.

Post by Christopher » Mon May 27, 2019 8:34 am

Hello,

please find attached a Visual Studio project which correctly replicates the code I gave you in my last post:
WindowsFormsApp1.zip
(218.03 KiB) Downloaded 839 times
Can you please modify the code in this project and post it back here so I can reproduce your problem on my machine?
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

goodsj
Newbie
Newbie
Posts: 18
Joined: Thu Jan 25, 2018 12:00 am

Re: The top outer border does not appear.

Post by goodsj » Tue May 28, 2019 10:01 am

It helped solve the problem. Thank you :D :D

Post Reply