mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-15 15:53:32 +00:00
fix series header
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user