v3.5.0
Enhancement
- Add option to fix right edge (see tradingview/lightweight-charts#218)
- Drop restriction for min bar spacing value (see tradingview/lightweight-charts#558)
- Add stack trace from javascript. Also improve collecting of native stack trace in order to make available grouping of crashes in error trackers like Firebase Crashlytics. (see #58)
- Add method for taking screenshots (see #50)
- Add delegation of touch events to external listeners (see #64)
Breaking changes
-
Add option to reset color (see #41).
IntColor
is now an inheritance ofColorable
interface. Migration available through the extensiontoIntColor()
.Before:
layout = layoutOptions { backgroundColor = Color.LTGRAY textColor = Color.BLACK }
Now:
layout = layoutOptions { backgroundColor = Color.LTGRAY.toIntColor() textColor = Color.BLACK.toIntColor() }
-
ChartsView
is now an inheritance ofFrameLayout
. If you need WebView's API please consider to open an issue. (see #38)
Fixes
- Fix kdoc (see #39)