
Announcements
Hello Community!
I want to know how can i solve this issue. I tried to create a column chart using the chart control from powerapps.
Now the issue is that when I try to change the series to show a different value is not working.
Eg. the M05 has a 0.16326389 value, that value in time is 03:55:06. The DataSource that populates the chart has this columns
| Machine | SumOfTime | OfflineTime |
| M05 | 0.1632638888549982 | 03:55:06 |
This is how it appears:
Now I tried to create a chart with a horizontal gallery control.
This is in the height control of the rectangle in the gallery:
1000*ThisItem.SumOfTimeHow can i fix the rectangles since they are flipped, or is it possible to fix the power apps control chart?
Hello,
Can you try the following in the 'Y' property of the rectangle.
Parent.Height - (ThisItem.SumOfTime*10)You might have to adjust the *1000 accordingly to fit into the area.