Project

ImagePlayground

Automate image processing, codes, metadata, charts, topology, and visual stories from PowerShell.

Stars 100
Forks 7
Total downloads 712,347
Release ImagePlayground-PowerShellModule.v3.2.7
Language: C# Updated: 2026-08-25

API Reference

Command

New-ImageChartPolar

Namespace ImagePlayground
Inputs
None

Creates polar chart data item.

Remarks

Creates polar chart data item.

Examples

Authored help example

Create polar data


New-ImageChartPolar -Name 'Series1' -Angle 0,1.57,3.14 -Value 1,2,1 -Color Blue
        

Create advanced polar data


New-ImageChartPolar -Name 'Advanced' -Angle 0,1.57,3.14 -Value 1,2,1 -Color Red
        

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-ImageChartPolar -Angle <Double[]> [-Color <ChartColor>] -Name <String> -Value <Double[]> [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

Angle Double[] requiredposition: 1pipeline: False
Angle values for the series.
Color ChartColor optionalposition: namedpipeline: False
Series color.
Name String requiredposition: 0pipeline: Falsealiases: Label
Label for the series.
Value Double[] requiredposition: 2pipeline: False
Radius values for the series.