This is a migrated thread and some comments may be shown as answers.

remove background design in radchart winform

1 Answer 132 Views
Chart (obsolete as of Q1 2013)
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Jayraj
Top achievements
Rank 1
Jayraj asked on 30 Nov 2013, 01:32 PM
How to remove background design in radchart winform:

I display only black background without any design in chart.How can i do?

1 Answer, 1 is accepted

Sort by
0
Ralitsa
Telerik team
answered on 04 Dec 2013, 09:03 AM
Hi Jayraj, 

Thank you for contacting us.

If you use the RadChart control, please look at the following code example which demonstrates how to hide grid lines:
this.radChart1.PlotArea.YAxis.Appearance.MinorGridLines.Visible = false;
this.radChart1.PlotArea.YAxis.Appearance.MajorGridLines.Visible = false;
this.radChart1.PlotArea.XAxis.Appearance.MinorGridLines.Visible = false;
this.radChart1.PlotArea.XAxis.Appearance.MajorGridLines.Visible = false;

If you use the RadChartView control, you can remove grid lines when set the ShowGrid property to false. You can use this snippet code: 
this.radChartView1.ShowGrid = false;

I hope this will help. Do not hesitate to write back with further questions.

 Regards,
Ralitsa
Telerik
TRY TELERIK'S NEWEST PRODUCT - EQATEC APPLICATION ANALYTICS for WINFORMS.
Learn what features your users use (or don't use) in your application. Know your audience. Target it better. Develop wisely.
Sign up for Free application insights >>
Tags
Chart (obsolete as of Q1 2013)
Asked by
Jayraj
Top achievements
Rank 1
Answers by
Ralitsa
Telerik team
Share this question
or