Graphical icon indicating copy to clipboard operation
Graphical copied to clipboard

Specify Maximum Y Axis Value

Open itoleck opened this issue 5 years ago • 0 comments

Would like to be able to specify a maximum Y Axis value as sometimes the maximum datapoint value is not necessarily the highest needed. Green, Yellow and Red values can also be more useful if you can specify a maximum Y value.

Can be done by adding a new parameter and changing a line in the Show-Graph.ps1

[int] $YMAX = 100, If($PSBoundParameters.ContainsKey("YMAX")) { $Metric.Maximum = $YMAX }

itoleck avatar Oct 29 '20 01:10 itoleck