I have set the panel colour to be white as below:-
WebChart1.Chart.Panel.Color = System.Drawing.Color.White;
WebChart1.Chart.Panel.Visible = true;
However this is giving a gradient colour, see sample 1
If I make the panel invisible = false, the fonts then look wrong, how can get remove the gradiant?
Panel Colour
-
- Newbie
- Posts: 58
- Joined: Thu Jul 05, 2012 12:00 am
Panel Colour
- Attachments
-
- with Panel Visible = false
- Graph Panel Colour 2.JPG (38.29 KiB) Viewed 2869 times
-
- With Panel Visible
- Graph Panel Colour.JPG (39.83 KiB) Viewed 2867 times
Re: Panel Colour
Hello mikethelad,
I hope will helps.
Thanks,
I recommend do something as next code:I have set the panel colour to be white as below:-
WebChart1.Chart.Panel.Color = System.Drawing.Color.White;
WebChart1.Chart.Panel.Visible = true;
However this is giving a gradient colour, see sample 1
If I make the panel invisible = false, the fonts then look wrong, how can get remove the gradiant?
Code: Select all
tChart1 = WebChart3.Chart;
tChart1.Panel.Gradient.Visible = false;
tChart1.Panel.Color = Color.White;
tChart1.Walls.Back.Gradient.Visible = false;
tChart1.Walls.Back.Color = Color.White;
Thanks,
Best Regards,
Sandra Pazos / 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 |