Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,10 @@ jobs:
path: .

- name: Install PowerShell
run: brew install --cask powershell
run: |
if ! command -v pwsh >/dev/null 2>&1; then
brew install powershell
fi

- name: Install PowerShell modules
run: |
Expand Down
8 changes: 3 additions & 5 deletions Build/Build-Module.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,9 @@
New-ConfigurationFormat -ApplyTo 'DefaultPSD1', 'OnMergePSD1' -PSD1Style 'Minimal'
# configuration for documentation, at the same time it enables documentation processing
$documentationConfiguration = @{
Enable = $true
StartClean = $true
UpdateWhenNew = $true
PathReadme = 'Docs\Readme.md'
Path = 'Docs'
Enable = $true
PathReadme = 'Docs\Readme.md'
Path = 'Docs'
}

if ((Get-Command New-ConfigurationDocumentation).Parameters.ContainsKey('SyncExternalHelpToProjectRoot')) {
Expand Down
156 changes: 156 additions & 0 deletions Docs/New-ChartArea.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,156 @@
---
external help file: PSWriteHTML-help.xml
Module Name: PSWriteHTML
online version: https://github.com/EvotecIT/PSWriteHTML
schema: 2.0.0
---
# New-ChartArea
## SYNOPSIS
Adds an area series to a chart.

## SYNTAX
### __AllParameterSets
```powershell
New-ChartArea [-Name] <string> [-Value] <Object> [[-Color] <string>] [[-Curve] <Object>] [[-Width] <int>] [[-Cap] <string>] [[-Dash] <int>] [<CommonParameters>]
```

## DESCRIPTION
Adds an ApexCharts area series. Use New-ChartAxisX to provide categories,
datetime values, or numeric axis settings when needed.

## EXAMPLES

### EXAMPLE 1
```powershell
PS > New-ChartArea -Name 'Revenue' -Value 10, 20, 18 -Color Blue -Curve smooth
```


## PARAMETERS

### -Cap
Stroke cap style.

```yaml
Type: String
Parameter Sets: __AllParameterSets
Aliases:
Possible values: butt, square, round

Required: False
Position: 5
Default value: None
Accept pipeline input: False
Accept wildcard characters: True
```

### -Color
Series color.

```yaml
Type: String
Parameter Sets: __AllParameterSets
Aliases:
Possible values:

Required: False
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: True
```

### -Curve
Stroke curve style.

```yaml
Type: Object
Parameter Sets: __AllParameterSets
Aliases:
Possible values: straight, smooth, stepline

Required: False
Position: 3
Default value: None
Accept pipeline input: False
Accept wildcard characters: True
```

### -Dash
Stroke dash spacing.

```yaml
Type: Nullable`1
Parameter Sets: __AllParameterSets
Aliases:
Possible values:

Required: False
Position: 6
Default value: None
Accept pipeline input: False
Accept wildcard characters: True
```

### -Name
Name of the area series.

```yaml
Type: String
Parameter Sets: __AllParameterSets
Aliases:
Possible values:

Required: True
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: True
```

### -Value
Values to display in the area series.

```yaml
Type: Object
Parameter Sets: __AllParameterSets
Aliases:
Possible values:

Required: True
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: True
```

### -Width
Stroke width.

```yaml
Type: Nullable`1
Parameter Sets: __AllParameterSets
Aliases:
Possible values:

Required: False
Position: 4
Default value: None
Accept pipeline input: False
Accept wildcard characters: True
```

### CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS

- `None`

## OUTPUTS

- `None`

## RELATED LINKS

- None
140 changes: 140 additions & 0 deletions Docs/New-ChartBubble.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,140 @@
---
external help file: PSWriteHTML-help.xml
Module Name: PSWriteHTML
online version: https://github.com/EvotecIT/PSWriteHTML
schema: 2.0.0
---
# New-ChartBubble
## SYNOPSIS
Adds a bubble series to a chart.

## SYNTAX
### __AllParameterSets
```powershell
New-ChartBubble [-Name] <string> [[-X] <Object[]>] [[-Y] <Object[]>] [[-Z] <Object[]>] [[-Data] <Object>] [[-Color] <string>] [<CommonParameters>]
```

## DESCRIPTION
Adds an ApexCharts bubble series. Provide X, Y, and Z arrays for the common
case, or pass raw ApexCharts-compatible points through Data.

## EXAMPLES

### EXAMPLE 1
```powershell
PS > New-ChartBubble -Name 'Risk' -X 1, 2, 3 -Y 20, 30, 15 -Z 5, 12, 8 -Color Orange
```


## PARAMETERS

### -Color
{{ Fill Color Description }}

```yaml
Type: String
Parameter Sets: __AllParameterSets
Aliases:
Possible values:

Required: False
Position: 5
Default value: None
Accept pipeline input: False
Accept wildcard characters: True
```

### -Data
{{ Fill Data Description }}

```yaml
Type: Object
Parameter Sets: __AllParameterSets
Aliases:
Possible values:

Required: False
Position: 4
Default value: None
Accept pipeline input: False
Accept wildcard characters: True
```

### -Name
{{ Fill Name Description }}

```yaml
Type: String
Parameter Sets: __AllParameterSets
Aliases:
Possible values:

Required: True
Position: 0
Default value: None
Accept pipeline input: False
Accept wildcard characters: True
```

### -X
{{ Fill X Description }}

```yaml
Type: Object[]
Parameter Sets: __AllParameterSets
Aliases:
Possible values:

Required: False
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: True
```

### -Y
{{ Fill Y Description }}

```yaml
Type: Object[]
Parameter Sets: __AllParameterSets
Aliases:
Possible values:

Required: False
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: True
```

### -Z
{{ Fill Z Description }}

```yaml
Type: Object[]
Parameter Sets: __AllParameterSets
Aliases:
Possible values:

Required: False
Position: 3
Default value: None
Accept pipeline input: False
Accept wildcard characters: True
```

### CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).

## INPUTS

- `None`

## OUTPUTS

- `None`

## RELATED LINKS

- None
Loading
Loading