I was able to fix it by refering some other post.
Here are the settings you need to do..
radChart.ChartTitle.TextBlock.Visible = false;
radChart.AutoLayout = false;
radChart.ChartTitle.Visible = false;
radChart.Legend.Visible = false;
radChart.PlotArea.Appearance.Dimensions.Margins = new Telerik.Charting.Styles.ChartMargins(0, 0, 0, 0);
radChart.Series[0].Appearance.LabelAppearance.LabelLocation = Telerik.Charting.Styles.StyleSeriesItemLabel.ItemLabelLocation.Inside;
radChart.Series[0].Appearance.DiameterScale = 0.98;
radChart.Appearance.FillStyle.FillType = Telerik.Charting.Styles.FillType.Solid;
radChart.Appearance.FillStyle.MainColor = System.Drawing.Color.Transparent;
radChart.PlotArea.Appearance.FillStyle.FillType = Telerik.Charting.Styles.FillType.Solid;
radChart.PlotArea.Appearance.FillStyle.MainColor = System.Drawing.Color.Transparent;
radChart.ChartTitle.Appearance.FillStyle.FillType = Telerik.Charting.Styles.FillType.Solid;
radChart.ChartTitle.Appearance.FillStyle.MainColor = System.Drawing.Color.Transparent;
radChart.Legend.Appearance.FillStyle.FillType = Telerik.Charting.Styles.FillType.Solid;
radChart.Legend.Appearance.FillStyle.MainColor = System.Drawing.Color.Transparent;
radChart.PlotArea.Appearance.Border.Visible = false;
radChart.PlotArea.DataTable.Appearance.Border.Visible = false;
radChart.Appearance.Border.Visible = false;
radChart.PlotArea.YAxis.Appearance.Visible = ChartAxisVisibility.False;