Skip to content
This repository has been archived by the owner on Mar 9, 2020. It is now read-only.

Commit

Permalink
Merge pull request #12 from kieferm/ChartRoundedCorners
Browse files Browse the repository at this point in the history
Add RoundedCorners property to ExcelChart
  • Loading branch information
JanKallman committed Sep 28, 2017
2 parents d64fee4 + 6e228ce commit b41a758
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions EPPlus/Drawing/Chart/ExcelChart.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1354,6 +1354,21 @@ public eChartStyle Style
}
}
}
const string _roundedCornersPath = "../../../c:roundedCorners/@val";
/// <summary>
/// Border rounded corners
/// </summary>
public bool RoundedCorners
{
get
{
return _chartXmlHelper.GetXmlNodeBool(_roundedCornersPath);
}
set
{
_chartXmlHelper.SetXmlNodeBool(_roundedCornersPath, value);
}
}
const string _plotVisibleOnlyPath="../../c:plotVisOnly/@val";
/// <summary>
/// Show data in hidden rows and columns
Expand Down

0 comments on commit b41a758

Please sign in to comment.