Skip to content

Commit

Permalink
Merge pull request #1097 from UnicodingUnicorn/fix-performance-dashbo…
Browse files Browse the repository at this point in the history
…ard-example

Fixed disk space chart minimum to 0
  • Loading branch information
adamdriscoll authored Sep 11, 2019
2 parents 7a2ee2b + 5d169b5 commit 65bd45e
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 65bd45e

Please sign in to comment.