This is a migrated thread and some comments may be shown as answers.

How to add title to x-axis and y-axis?

2 Answers 237 Views
ChartView
This is a migrated thread and some comments may be shown as answers.
Paul
Top achievements
Rank 1
Paul asked on 09 May 2017, 03:21 AM

Hello,

I tried to bring our scatter plot chart feature from our website to our winform application.

I tried to use chartview to implement this feature, then I cannot find an option to add title into x-axis and y-axis.

So what should I do to add title into x-axis and y-axis?

Attachment #1 is in website version

Attachment #2 is in winform version

Regard,

Paul

 

2 Answers, 1 is accepted

Sort by
0
Accepted
Dimitar
Telerik team
answered on 10 May 2017, 05:17 AM
Hello Paul,

You can use the Title property. Here is an example:
LinearAxis horizontalAxis = radChartView1.Axes.Get<LinearAxis>(0);
 
horizontalAxis.Title = "My Title";

Please let me know if there is something else I can help you with. 
 
Regards,
Dimitar
Telerik by Progress
Try our brand new, jQuery-free Angular 2 components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
0
Paul
Top achievements
Rank 1
answered on 10 May 2017, 09:48 AM

Hello Dimitar,

Thanks you for your help, it working well for me

Regard,

Paul

Tags
ChartView
Asked by
Paul
Top achievements
Rank 1
Answers by
Dimitar
Telerik team
Paul
Top achievements
Rank 1
Share this question
or