Evotec

Project

PSWriteHTML

PSWriteHTML is an open-source PowerShell project with packages, release history, and working documentation.

Stars 995
Forks 114
Open issues 69
PowerShell Gallery downloads 7,436,513
Release v1.41.0
Language: PowerShell Updated: 2026-04-11

API Reference

Function

New-GageSector

Namespace PSWriteHTML

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

Authored help example

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 Sets

Parameters

Color String optionalposition: 0pipeline: False
Specifies the color of the gauge sector.
Max Int32 optionalposition: 2pipeline: False
Specifies the maximum value of the gauge sector.
Min Int32 optionalposition: 1pipeline: False
Specifies the minimum value of the gauge sector.