Hiis it possible to change the font in the ReportViewer at run time ?Did it in the RadGridView at run time with the following code and functioned:Private Sub RadFontDropDownList1_TextChanged(sender As Object, e As EventArgs) Handles RadFontDropDownList1.TextChangedDim fnt As Fontfnt = RadGridView1.FontRadGridView1.Font = New System.Drawing.Font(RadFontDropDownList1.SelectedFont, RadDropDownList2.Text)End SubI would like to change the font in the RadGridView that it alsoin the ReportViewer.