Nivo Bar Chat - Blank

So using the example on the doc’s page, then nivo chart is blank but auto updating at the same time. Do these charts work?

New-UDRow -Columns {
    New-UDColumn -SmallSize 6 -AutoRefresh -RefreshInterval 1 -Endpoint { 
        $Data = @(
            @{
                country = 'USA'
                burgers = (Get-Random -Minimum 10 -Maximum 100)
                fries = (Get-Random -Minimum 10 -Maximum 100)
                sandwich = (Get-Random -Minimum 10 -Maximum 100)
            }
            @{
                country = 'Germany'
                burgers = (Get-Random -Minimum 10 -Maximum 100)
                fries = (Get-Random -Minimum 10 -Maximum 100)
                sandwich = (Get-Random -Minimum 10 -Maximum 100)
            }
            @{
                country = 'Japan'
                burgers = (Get-Random -Minimum 10 -Maximum 100)
                fries = (Get-Random -Minimum 10 -Maximum 100)
                sandwich = (Get-Random -Minimum 10 -Maximum 100)
            }
        )

        New-UDNivoChart -Id 'barChart' -Bar -Data $Data -Height 400 -Width 900 -Keys @('burgers', 'fries', 'sandwich')  -IndexBy 'country'
    }
}

Copy/Pasted the example here is what I have running 2.5.0… is this different from what you see?

just blank white space with the lines, no text or colors.

Are you using internet explorer?

working now in 2.5 but i got bigger problems to squish now.