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

Namespace ImagePlayground
Inputs
None

Creates bubble chart data item.

Remarks

Creates bubble chart data item.

Examples

Authored help example

Create bubble data


New-ImageChartBubble -Name 'Series1' -X 1,2,3 -Y 4,5,6 -Size 10,20,30 -Color Blue
        

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-ImageChartBubble [-Color <ChartColor>] -Name <String> -Size <Double[]> -X <Double[]> -Y <Double[]> [<CommonParameters>]
#
Parameter set: All Parameter Sets

Parameters

Color ChartColor optionalposition: namedpipeline: False
Series color.
Name String requiredposition: 0pipeline: Falsealiases: Label
Label for the bubble series.
Size Double[] requiredposition: 3pipeline: False
Bubble sizes.
X Double[] requiredposition: 1pipeline: False
X values for the series.
Y Double[] requiredposition: 2pipeline: False
Y values for the series.