Skip to content

Commit

Permalink
Fixed disk space chart minimum to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
UnicodingUnicorn committed Sep 11, 2019
1 parent 0ef600c commit 5d169b5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions examples/server-performance-dashboard.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,12 @@ Start-UdDashboard -Content {
New-UdChartDataset -DataProperty "Size" -Label "Size" -BackgroundColor "#80962F23" -HoverBackgroundColor "#80962F23"
New-UdChartDataset -DataProperty "FreeSpace" -Label "Free Space" -BackgroundColor "#8014558C" -HoverBackgroundColor "#8014558C"
)
} -Options @{
scales = @{
yAxes = @(@{
min = 0
})
}
}
}
}
Expand Down

0 comments on commit 5d169b5

Please sign in to comment.