To set the font style for the data labels for example, to bold use the following code:
label.Style.Font = New System.Drawing.Font("Arial", 10, System.Drawing.FontStyle.Bold)
•C#
label.Style.Font = new System.Drawing.Font("Arial", 10, System.Drawing.FontStyle.Bold);