hellocharts-android icon indicating copy to clipboard operation
hellocharts-android copied to clipboard

Piechart display nothing when in ScrollView

Open xiaocai20091687 opened this issue 7 years ago • 2 comments

xiaocai20091687 avatar Apr 13 '17 01:04 xiaocai20091687

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>

vicky7230 avatar Apr 20 '17 05:04 vicky7230

Hi, try to use method chart.setContainerScrollEnabled(true, ContainerScrollType.VERTICAL); or try to disable chart rotation chart.setChartRotationEnabled(false).

onecoders avatar Jul 03 '18 07:07 onecoders