You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are getting crashes when we call "contains(_ e: ChartDataEntry) -> Bool" on a LineChartDataSet in 3.4.0. This problem does not happen in 3.2.1 of the library. This is happening because contains is not implemented anywhere up the chain of parent classes of LineChartDataSet, including in ChartDataSet where it used to be implemented in 3.2.1.
We were able to fix the issue locally by reimplementing contains in ChartDataSet like so, but it seems like this should be reverted back to the way it was before.
it's removed in #3815. ChartDataSet has adopted some collection types, you should be able to still use however... this is the hint on my side in ChartsDemo:
We are getting crashes when we call "contains(_ e: ChartDataEntry) -> Bool" on a LineChartDataSet in 3.4.0. This problem does not happen in 3.2.1 of the library. This is happening because contains is not implemented anywhere up the chain of parent classes of LineChartDataSet, including in ChartDataSet where it used to be implemented in 3.2.1.
We were able to fix the issue locally by reimplementing contains in ChartDataSet like so, but it seems like this should be reverted back to the way it was before.
Is there any reason why this function is no longer implemented anywhere anymore?
Thanks.
The text was updated successfully, but these errors were encountered: