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?
TO
The top outer border does not appear.
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: The top outer border does not appear.
Hello,
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;
}
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 |
Re: The top outer border does not appear.
Hello.
I tried following the attached code above , but it doesn't work.
There is no change..
Do you have any other ideas?
I tried following the attached code above , but it doesn't work.
There is no change..
Do you have any other ideas?
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: The top outer border does not appear.
Hello,
please find attached a Visual Studio project which correctly replicates the code I gave you in my last post:
Can you please modify the code in this project and post it back here so I can reproduce your problem on my machine?
please find attached a Visual Studio project which correctly replicates the code I gave you in my last post:
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 |
Re: The top outer border does not appear.
It helped solve the problem. Thank you