Chart for WPF and Silverlight / Chart Types / Bar and Column Charts / Changing Corners of Column Chart and Bar Chart
In This Topic
Changing Corners of Column Chart and Bar Chart
In This Topic

Bars/columns do not have rounded corners by default. The radius of rectangle corners can be set using Bar class, for example:

C#
Copy Code
ds.Symbol = new Bar() { RadiusX=5, RadiusY=5};
See Also