1 min readApr 12, 2020
Hey Sergio,
yes, you can update your data by reassigning a new RadarChartData
object to the charts data
property. This will show the new entries.
So don’t update a single RadarChartDataEntry
but update the whole RadarChartData
object.
I like to have a custom data structure holding the information I want to present in the chart together with a method converting this data structure to an instance of RadarChartData
. Whenever my data is updated I just convert my new data and set it as the chart’s data.
I hope that helps.