hellocharts-android
hellocharts-android copied to clipboard
Piechart display nothing when in ScrollView
It does not display anything if it is a direct child of scrollview:
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<lecho.lib.hellocharts.view.LineChartView
android:id="@+id/chart"
android:layout_width="match_parent"
android:layout_height="250dp"
android:padding="20dp"/>
</ScrollView>
Hi, try to use method chart.setContainerScrollEnabled(true, ContainerScrollType.VERTICAL); or try to disable chart rotation chart.setChartRotationEnabled(false).