Forum Discussion
pieduke88
2 years agoFrequent Visitor
Optimise update rendering only for new data
From https://learn.microsoft.com/en-us/power-bi/developer/visuals/performance-tips "Store the data view passed on update. Render only the data points that are different from the previous data view. ...
lbendlin
2 years agoSuper User
That depends on your data. For example if you have an IOT sensor as a data source you can drop the first item in the array, add the new item to the array, shift your rendered image one tick to the left and then just render the new data point.