lecho / hellocharts-android

Charts library for Android compatible with API 8+, several chart types with scaling, scrolling and animations 📊
Apache License 2.0
7.43k stars 1.61k forks source link

SelectValue #535

Open flymaomaochong opened 4 years ago

flymaomaochong commented 4 years ago

now I use the ComboLineColumnChartView to do this:I click collumu to select one point in line,but the selectedValue is dones't work and cause ANR.I want to know how to do this. @lecho


                selectedValue.setFirstIndex(0);
                selectedValue.setType(SelectedValue.SelectedValueType.LINE);
                selectedValue.setSecondIndex(size);
            comboLineChart.selectValue(selectedValue);```
here is my code.