ironmansoftware / powershell-universal

Issue tracker for PowerShell Universal
https://powershelluniversal.com
35 stars 2 forks source link

Issue Rendering Nivo Line Chart #3605

Closed adamdriscoll closed 3 weeks ago

adamdriscoll commented 3 weeks ago

Version

5.0.0

Severity

Low

Environment

msi

Steps to Reproduce

I'm not seeing it render and a prompt pops up. No errors are shown.

New-UDApp -Content { 
[array]$Data = [PSCustomObject]@{

    id = "DataSet"

    data = 

        [PSCustomObject]@{

            x = 5

            y = 4

        },

        [PSCustomObject]@{

            x = 10

            y = 10

        },

        [PSCustomObject]@{

            x = 5

            y = 5

        }

}

New-UDNivoChart -Line -Data $Data -Height 500 -Width 1000 -LineWidth 2 -Curve natural -AxisBottom @(1..100)

}

Expected behavior

Renders chart

Actual behavior

Doesn't render chart.

Additional Environment data

No response

Screenshots/Animations

No response