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-ImageChartRadar

Namespace ImagePlayground
Inputs
None
Outputs
ImagePlayground.ChartRadar

Creates radar chart series data.

Remarks

Use at least three category coordinates. Multiple emitted definitions become multiple radar series in New-ImageChart.

Examples

Authored help example

Create a radar chart

PS>


New-ImageChart -ChartsDefinition { New-ImageChartRadar -Name 'Current' -Category 1,2,3,4 -Value 82,68,91,74 -Color '#2563EB' } -FilePath radar.svg
        

Creates a four-axis radar chart using the shared ChartForgeX renderer.

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

Parameters

Category Double[] requiredposition: 1pipeline: False
Numeric category coordinates shared by the radar series.
Color ChartColor optionalposition: namedpipeline: False
Series color.
Name String requiredposition: 0pipeline: Falsealiases: Label
Series name.
Value Double[] requiredposition: 2pipeline: False
Values for the radar series.

Outputs

ImagePlayground.ChartRadar: Radar chart definition.