diff --git a/EPPlus/Drawing/Chart/ExcelChart.cs b/EPPlus/Drawing/Chart/ExcelChart.cs index ed4783a4..fc645e09 100644 --- a/EPPlus/Drawing/Chart/ExcelChart.cs +++ b/EPPlus/Drawing/Chart/ExcelChart.cs @@ -1354,6 +1354,21 @@ public eChartStyle Style } } } + const string _roundedCornersPath = "../../../c:roundedCorners/@val"; + /// + /// Border rounded corners + /// + public bool RoundedCorners + { + get + { + return _chartXmlHelper.GetXmlNodeBool(_roundedCornersPath); + } + set + { + _chartXmlHelper.SetXmlNodeBool(_roundedCornersPath, value); + } + } const string _plotVisibleOnlyPath="../../c:plotVisOnly/@val"; /// /// Show data in hidden rows and columns