From d3799ffc17eb1470e59d8c927ac4db08f52d4a12 Mon Sep 17 00:00:00 2001 From: Jonathan Colon Date: Thu, 11 Jun 2026 22:16:43 -0400 Subject: [PATCH] Fix array initialization for chart values in Example14.ps1 --- Examples/Example14.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples/Example14.ps1 b/Examples/Example14.ps1 index 37845ab..ebf3b19 100644 --- a/Examples/Example14.ps1 +++ b/Examples/Example14.ps1 @@ -32,7 +32,7 @@ $OutputFolderPath = Resolve-Path $Path #> $ChartTitle = 'Security Posture Assessment' -$Values = @(@(3,5,4,2)) +$Values = ,@(3,5,4,2) # The comma before the array ensures it's treated as a single array object $Labels = @('USA DataCenter') <#