You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi all!
I would like to create a Chart with a set timerange. The input is a CSV file where the first colomn is DATE.
Is this possible?
My chart looks like this:
New-HTMLPanel {
New-HTMLChart -Title "Duplicate Devices" {
New-ChartAxisX -
New-ChartToolbar -Zoom -Selection -ZoomOut -ZoomIn -Reset -Pan -Download
New-ChartAxisX -Name $labels
New-ChartLine -Curve smooth -Width 2 -Name 'Duplicate' -Value $DuplicateValues_FillMissing -Color RedBerry
New-ChartAxisY -Show -TitleText 'Number of Devices'
}
}
Beta Was this translation helpful? Give feedback.
All reactions