API Reference
New-ChartBar
Creates a new bar chart object with specified name, value, and color.
Remarks
This function creates a new bar chart object with the provided name, value, and color. The name is used as the identifier for the bar, the value represents the data to be displayed, and the color determines the color of the bar.
Examples
EXAMPLE 1
New-ChartBar -Name 'Sales' -Value 1000 -Color 'blue'
Creates a new bar chart object named 'Sales' with a value of 1000 and a blue color.
EXAMPLE 2
New-ChartBar -Name 'Expenses' -Value 750 -Color 'red'
Creates a new bar chart object named 'Expenses' with a value of 750 and a red color.
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-ChartBar [-Color <String[]>] -Name <String> -Value <Object> [<CommonParameters>]
#
All Parameter SetsParameters
- Color String[]
- The color of the bar. If not specified, a default color will be used.
- Name String
- The name of the bar chart object.
- Value Object
- The value or data to be displayed in the bar chart.