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

Add RoundedCorners property to ExcelChart #12

Merged
merged 1 commit into from
Sep 28, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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