or
this.htmlView = new HtmlViewDefinition();
this.htmlView.RowTemplate.Rows.Add(new RowDefinition());
this.htmlView.RowTemplate.Rows[0].Cells.Add(new CellDefinition("Avarez"));
this.htmlView.RowTemplate.Rows[0].Cells.Add(new CellDefinition("Maliyat"));
GridViewDataColumn Maliyat = (GridViewDataColumn)this.radGridView1.Columns["Maliyat"];
Maliyat.FormatString = "{0:#,###}";
this.radGridView1.ViewDefinition = htmlView;
How can I increase the font size of the name of the days in a MonthlyView. (Sunday... Monday.... in the header) in C#
Thanks for your help