API Reference
Function
New-GageSector
Creates a new gauge sector with specified color, minimum value, and maximum value.
Remarks
This function creates a new gauge sector with the provided color, minimum value, and maximum value. It is useful for visualizing data within a specific range.
Examples
EXAMPLE 1
$sector = New-GageSector -Color 'red' -Min 0 -Max 100
Creates a new gauge sector with a red color, minimum value of 0, and maximum value of 100.
Common Parameters
This command supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
For more information, see about_CommonParameters.
Syntax
New-GageSector [-Color <String>] [-Max <Int32>] [-Min <Int32>] [<CommonParameters>]
#
Parameter set:
All Parameter SetsParameters
- Color String
- Specifies the color of the gauge sector.
- Max Int32
- Specifies the maximum value of the gauge sector.
- Min Int32
- Specifies the minimum value of the gauge sector.