I'm using the iOS-Charts to display a simple cubic line chart and want to update the chart every second with new data being reported. I've tried using the addEntry method to dynamically add the value to the end of the array and I've verified that the data is indeed successfully added to the array after each second. However the chart itself does not update. I've looked at the documentation on the MPAndroidChart and it does not specify calling any kind of update method after first calling the addEntry method. I do see in another section of the documentation that there is an invalidate() method on the Chart object that 'refreshes' the chart, however, I do not have that option when I access the Chart object, nor do I know if this is required.I'm using the iOS-Charts to display a simple cu