API Reference
Command
New-ImageChartRadar
Creates radar chart series data.
Remarks
Use at least three category coordinates. Multiple emitted definitions become multiple radar series in New-ImageChart.
Examples
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 SetsParameters
- Category Double[]
- Numeric category coordinates shared by the radar series.
- Color ChartColor
- Series color.
- Name String
- Series name.
- Value Double[]
- Values for the radar series.
Outputs
ImagePlayground.ChartRadar: Radar chart definition.