Я использую MVVM design Pattern в проекте и использую библиотеку Graph MPAndroid Chart для рисования линейного графика. Так можно ли добавить привязку Android с помощью viewModel в GraphView?
<com.github.mikephil.charting.charts.LineChart
android:id="@+id/view_graph"
android:layout_width="match_parent"
android:background="@color/trends_bg"
android:layout_height="360dp"
android:layout_marginTop="7dp"
android:adapter="@{viewModel.loadGraphData}"
app:layout_constraintTop_toBottomOf="@+id/tv_date_range" />`
Код выше android:adapter="@{viewModel.loadGraphData}"
не работает