Hi TeeChart Team,
how can we change the background of the chart from now standard grey to white?
Background of the Chart
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi ipasuser,
Try this:
Try this:
Code: Select all
tChart1.Panel.Gradient.Visible = false;
tChart1.Walls.Back.Transparent = true;
tChart1.BackColor = Color.White;
Best Regards,
Narcís Calvet / 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 |
unfortunately , the property BackColor
does not exist.
Code: Select all
tChart1.BackColor = Color.White;
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi ipasuser,
This exist in TeeChart for .NET v2 and v3. You can try tChart1.Panel.Color instead. If the problem persists please let us know the exact TeeChart version you are using.
Thanks in advance.
This exist in TeeChart for .NET v2 and v3. You can try tChart1.Panel.Color instead. If the problem persists please let us know the exact TeeChart version you are using.
Thanks in advance.
Best Regards,
Narcís Calvet / 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 |