I am streaming real time data using eventhub and powerbi api into dataset my data looks like
{
"Time":"2017-01-10T21:13:09.168Z",
"Unit":"1",
"X":98.6,
"Y":98.6,
"Pressure":98.6
}
I want to display a summary table like,
Unit | Pressure | X | Y |
1 | 98.6 | 98.6 | 98.6 |
2 | 2.4 | 10 | 11 |
3 | 3.5 | 45 | 12 |
4 | 4.6 | 44 | 12 |
5 | 5.7 | 67 | 56 |
when I click on a row of summary table, I want it to display a week of data on a line chart with time on x-axis and pressure of that particular unit number.
Is there a way I can achieve this using powerbi service?