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

ChartView PolarPoint customize

1 Answer 50 Views
ChartView
This is a migrated thread and some comments may be shown as answers.
Marco
Top achievements
Rank 1
Marco asked on 24 Nov 2016, 02:03 PM

Hi,

I have a Polar ChartView with PolarPoint series and a custom background, for evid better the points I need to change the outline of datapoints (ex: 1 pixel of black outside the circle).

I managed to change the shape with PolarPointSeries.Shape and size with .PointSize but I didn't reach the point border props or color.

How I can manage that?

1 Answer, 1 is accepted

Sort by
0
Hristo
Telerik team
answered on 25 Nov 2016, 01:44 PM
Hello Marco,

Thank you for writing.

You can display the point borders by setting the BordeBoxStyle to OutLineInnerBorders. Please check my code snippet below: 
this.radChartView1.AreaType = ChartAreaType.Polar;
PolarPointSeries polarPointSeries = new PolarPointSeries();
polarPointSeries.PointSize = new SizeF(20, 20);
polarPointSeries.BorderColor = Color.Red;
polarPointSeries.BorderBoxStyle = BorderBoxStyle.OuterInnerBorders;

I am also sending you a screenshot showing the result on my end.

I hope this helps. Should you have further questions please do not hesitate to write back.

Regards,
Hristo Merdjanov
Telerik by Progress
Telerik UI for WinForms is ready for Visual Studio 2017 RC! Learn more.
Tags
ChartView
Asked by
Marco
Top achievements
Rank 1
Answers by
Hristo
Telerik team
Share this question
or