jns-codeworks
jns-codeworks
It would be great if there was an option to enable drawing curved lines i.e. bezier paths
Add option to round YAxis intervals / ticks to nice numbers, i.e. 1,2,5 and all power-of-ten multiples of these numbers, like in this [stackoverflow thread](https://stackoverflow.com/questions/8506881/nice-label-algorithm-for-charts-with-minimum-ticks). Standard intervals:  Nice number...
It seems like XAxis.stepSize is not synchronized to the xOffset between DataPoints. Changing stepSize only has effect on XAxis, not on Line ``` val ethereumOneWeek = listOf( DataPoint(1f, 2938.67f), DataPoint(2f,...
Task dependecyUpdates fails with error "Parallel project execution is not supported", although the flag --no-parallel is added. I've tried dependencyUpdates --no-parallel -Dorg.gradle.parallel=false, as well as disabling parallel runs in gradle.properties,...
When there are multiple definitions for the same type, one of which has a named qualifier applied, the named definition overrides the non named (default) definition: ``` class KoinInjectionTest :...