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

area border

2 Answers 56 Views
ChartView
This is a migrated thread and some comments may be shown as answers.
asghar
Top achievements
Rank 1
asghar asked on 24 Feb 2019, 03:35 PM

hi

i want to enable border of area

2 Answers, 1 is accepted

Sort by
0
asghar
Top achievements
Rank 1
answered on 24 Dec 2019, 08:51 AM
???????????
0
Dess | Tech Support Engineer, Principal
Telerik team
answered on 24 Dec 2019, 08:59 AM
Hello, Asghar,     

Note that most of the forum threads are reviewed by Telerik representatives and sometimes we address the questions asked by our customers in the forums as well. However, a post in the forum doesn't guarantee you a response from the Telerik support team. Moreover, threads are handled according to license and time of posting, so if it is an urgent problem, we suggest you use a support ticket, which would be handled before a forum thread. Thank you for your understanding.

In order to specify the border color, it is necessary to set the AreaSeries.BorderColor property: 
            AreaSeries areaSeries = new AreaSeries();
            areaSeries.BackColor = Color.Yellow;
            areaSeries.BorderColor = Color.Red;
            areaSeries.DataPoints.Add(new CategoricalDataPoint(13, "Jan"));
            areaSeries.DataPoints.Add(new CategoricalDataPoint(20, "Apr"));
            areaSeries.DataPoints.Add(new CategoricalDataPoint(15, "Jul"));
            areaSeries.DataPoints.Add(new CategoricalDataPoint(16, "Oct"));
            this.radChartView1.Series.Add(areaSeries);



I hope this information helps.

Regards,
Dess | Tech Support Engineer, Sr.
Progress Telerik

Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Tags
ChartView
Asked by
asghar
Top achievements
Rank 1
Answers by
asghar
Top achievements
Rank 1
Dess | Tech Support Engineer, Principal
Telerik team
Share this question
or