We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Calendar chart using New-UDNivoChart -Calendar does not render on iPhones. Tested on iPhone 7+, 8 and XR.
New-UDNivoChart -Calendar
Add a Nivo Calendar chart to a page. Navigate to dashboard on iPhone.
Calendar chart should render on iPhones the same way it does on other devices.
Android (Galaxy S10): iPhone (iPhone XR):
New-UDMuTypography -Text 'Missouri' -Align center -Variant h4 New-UDRow -Columns { New-UDColumn -Size 12 -Content { New-UDNivoChart -Calendar -Data $calMissouriData -From '2020-01-01' -To $toDate -Responsive -Height 250 -MarginTop $margin -MarginBottom $margin -MarginLeft $margin -MarginRight $margin -Colors @('#ffd000', '#ffba00', '#ffa300', '#ff8c00', '#ff7400', '#fc5a03') } New-UDColumn -Size 12 -Content { $barDataset = @() New-UDChart -Type Bar -Endpoint { For ($k = 0; $k -lt $barMissouri.Count; $k++) { $props = [ordered]@{ Date = $barMissouri[$k].date.Substring(0, 10); Active = $barMissouri[$k].confirmed - $barMissouri[$k].deaths - $barMissouri[$k].recovered; Deaths = $barMissouri[$k].deaths; Recovered = $barMissouri[$k].recovered; } $barDataset += @(New-Object PSCustomObject -Property $props) } $barDataset | Out-UDChartData -LabelProperty "Date" -Dataset @( New-UDChartDataset -DataProperty "Active" -Label "Active" -BackgroundColor $colorBarActive -HoverBackgroundColor $colorHoverActive New-UDChartDataset -DataProperty "Deaths" -Label "Deaths" -BackgroundColor $colorBarDeath -HoverBackgroundColor $colorHoverDeath New-UDChartDataset -DataProperty "Recovered" -Label "Recovered" -BackgroundColor $colorBarRecovered -HoverBackgroundColor $colorHoverRecovered ) } -Options $barOptions } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the Issue
Calendar chart using
New-UDNivoChart -Calendar
does not render on iPhones.Tested on iPhone 7+, 8 and XR.
To Reproduce
Add a Nivo Calendar chart to a page.
Navigate to dashboard on iPhone.
Expected behavior
Calendar chart should render on iPhones the same way it does on other devices.
Screenshots
Android (Galaxy S10):
iPhone (iPhone XR):
Script Sample
Version Information
The text was updated successfully, but these errors were encountered: