Articles in this section
Category / Section

How do I customize the series text?

1 min read

 

Using the ChartStyleInfo class, we can customize the series text. We can display the series text by enabling the DisplayText property. We can customize the series text by setting the font styles, text color and text allignment.

C#

// Enabling Series Text

this.chartControl1.Series[0].Style.DisplayText = true;

//Customize the series text

this.chartControl1.Series[0].Style.Font.Facename = "Times New Roman";

this.chartControl1.Series[0].Style.Font.FontStyle = FontStyle.Bold;

this.chartControl1.Series[0].Style.TextColor =Color.Blue;

VB

' Enabling Series Text

Me.chartControl1.Series(0).Style.DisplayText = True

'Customize the series text

Me.chartControl1.Series(0).Style.Font.Facename = "Times New Roman"

Me.chartControl1.Series(0).Style.Font.FontStyle = FontStyle.Bold

Me.chartControl1.Series(0).Style.TextColor =Color.Blue

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied