@Anonymous
The thing about charts and graphs in PowerApps is that you need to shape your data for whatever you need to display.
So, if you are wanting data formatted a certain way for the chart, then do so in the table.
AddColumns(
GroupBy(yourTable,
"Column1", "_data"
),
"_hourSum", Sum(_data, Column2),
"_column1Date", Text(Column1, ShortDate)
)
I think you might have altered your response about the filtering of the data - I assume you figured that out!
So to sum that up, your Items property formula would be:
AddColumns(
GroupBy(
Filter(yourTable,
column3 && !column4 &&
column1 > DatePicker1.SelectedDate &&
column1 < DateAdd(DatePicker1_1.SelectedDate, 1, Days)
),
"column1", "_data"
),
"_hourSum", Sum(_data, 'column2'),
"_column1Data", Text(column1, ShortDate)
)