PhilJay / MPAndroidChart-Realm

http://realm.io related features of the MPAndroidChart library.
Apache License 2.0
198 stars 37 forks source link

Support for RealmList? #7

Closed casidiablo closed 6 years ago

casidiablo commented 7 years ago

There are cases in it's useful to chart datasets in one-to-many relationships. In that case we have a RealmList instead of a RealmResult.

It'd be great if it was supported natively.

valentinvstoyanov commented 7 years ago

In order to transform RealmList to RealmResults you just have to call where() on your RealmList and then findAll(). Example : yourObject.getRealmList().where().findAll()