$99 VS $1000+. UI Control for ASP.NET AJAX(contains chart and gridview).
Chart Control for C# Windows Forms
Chart features of scroll and zoom, selection, tooltip, trackball, title, legend, smart labels, drill down
Home > WinForms UI Controls > User Manual > Chart Title in C#

Title in Chart for WinForms C# Tutorial

The Chart controls for C# Windows Forms applications provide various features to meet specific requirements. By using this Chart control, developers can create functionalities such as scroll and zoom, selection, tooltip, trackball, title, legend, smart labels, and drill down for Chart in their Windows Forms C# projects. This Chart controls is easy to use and complete C# code sample is included for the convenience of WinForms Chart UI designers. The following are an overview of these features.
The below tutorial illustrate how to display the title in Chart. There is a property named as DisplayTitle that determines if displaying the title for Chart or not. To show the title in Chart, the value of the DisplayTitle property should be true and the text of title can be set with the below C# code:
this.chart1.Title = "Title of the Chart";
this.chart1.DisplayTitle = true;
On chart, the title can be placed at each of the four sides. The property named as TitlePosition is used to locate the place of the Chart title. The following C# code shows how to display the Chart title in the title element and there are a few options available for users.

this.chart1.ChartElement.TitleElement.TextOrientation = Orientation.Vertical;
this.chart1.ChartElement.TitlePosition = TitlePosition.Left;
this.chart1.ChartElement.TitleElement.FlipText = true;
UI Controlsfor Windows Forms
.NET WinForms UI Overview.NET WinForms UI Features.NET WinForms UI GuideC# WinForms UI DesignVB.NET WinForms UI Design
WinForms UI Controls