fix series header

This commit is contained in:
dfinke
2016-03-31 16:51:08 -04:00
parent 5104e14d81
commit 0f45dc9b12
4 changed files with 20 additions and 5 deletions

View File

@@ -13,7 +13,8 @@ function New-ExcelChart {
$ColumnOffSetPixels=5,
[Switch]$NoLegend,
[Switch]$ShowCategory,
[Switch]$ShowPercent
[Switch]$ShowPercent,
$SeriesHeader
)
[PSCustomObject]@{
@@ -31,5 +32,6 @@ function New-ExcelChart {
NoLegend = if($NoLegend) {$true} else {$false}
ShowCategory = if($ShowCategory) {$true} else {$false}
ShowPercent = if($ShowPercent) {$true} else {$false}
SeriesHeader=$SeriesHeader
}
}