Hi,
I would like to create an RDS overview of number of total of users per hour, for over a full year.
Then I also would like to show the number of users per team.
Got all data in Powershell (which gets it from a sql database).
$Overview => type is System.Management.Automation.PSCustomObject
$Overview
GroupName Details
——— ——-
Team01 {{ x: new Date(2018,1,29,14,00), y: 57 },{ x: new Date(2018,1,29,16,00), y: 20},}
Team02 {{ x: new Date(2018,1,29,14,00), y: 3 },{ x: new Date(2018,1,29,17,00), y: 4 },}
Team03 {{ x: new Date(2018,1,29,14,00), y: 9 },{ x: new Date(2018,1,29,18,00), y: 6 },}
Team04 {{ x: new Date(2018,1,29,14,00), y: 5 },{ x: new Date(2018,1,29,19,00), y: 25 },}
TOTAL {{ x: new Date(2018,1,29,14,00), y: 74},{ x: new Date(2018,1,29,20,00), y: 55 },}
I found this chart: https://canvasjs.com/javascript-charts/multi-series-chart/
which could show the different teams and stats, but how do I get
the $Overview into the html in a decent way now?
Could import the html via Get-Content -Path C:\path\to\my\file.txt but then still my data $overview won’t be in it.
Thanks for your input.
Steven