MPAndroidChart highlightValue无效,抛出ArrayIndexOutOfBoundsException

转自:https://stackoverflow.com/questions/51769982/android-mp-chart-highlightvalue-not-working-throws-arrayindexoutofboundsexcepti.

解决方案:

Highlight high = new Highlight(highlightIndex, 0, 0);
high.setDataIndex(0);
combinedChart.highlightValue(high, false);

 

 

public class MainActivity extends AppCompatActivity implements View.OnClickListener {

    final int DATA_MAX_COUNT = 30;

    List<MyData> list    = new ArrayList<>(); ///<Dummy data stored in here
    List<Entry>  entries = new ArrayList<>(); ///<Entries for MP Chart

    int highlightIndex = 0; ///<Chart's data index to be highlighted

    CombinedChart combinedChart; ///<I use combined chart because there will be more data sets added later on

    Button prevBtn; ///<Button for highlight control
    Button nextBtn; ///<Button for highlight control

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        combinedChart = (CombinedChart) findViewById(R.id.chart);

        prevBtn = (Button) findViewById(R.id.prev_btn);
        prevBtn.setOnClickListener(this);

        nextBtn = (Button) findViewById(R.id.next_btn);
        nextBtn.setOnClickListener(this);

        generateData();
        drawChart();
    }


    @Override
    public void onClick(View v) {

        //Clicking buttons should move the highlighted value
        if (v.equals(prevBtn)) {
            if (highlightIndex > 0) {
                highlightIndex--;
            }
        } else if (v.equals(nextBtn)) {
            if (highlightIndex + 1 < DATA_MAX_COUNT) {
                highlightIndex++;
            }
        }

        //Does not work, throws exception
        //combinedChart.highlightValue(new Highlight(highlightIndex, 0, 0));

        //Does not work, throws exception
        //combinedChart.highlightValue(highlightIndex, 0, false);

        //Exception

//        java.lang.ArrayIndexOutOfBoundsException: length=10; index=-1
//        at com.github.mikephil.charting.data.CombinedData.getDataByIndex(CombinedData.java:152)
//        at com.github.mikephil.charting.data.CombinedData.getEntryForHighlight(CombinedData.java:183)
//        at com.github.mikephil.charting.charts.Chart.highlightValue(Chart.java:635)
//        at com.github.mikephil.charting.charts.Chart.highlightValue(Chart.java:613)


        //Works, but highlights value on chart with like x=0 and y= 190, wtf?
        combinedChart.highlightValue(combinedChart.getHighlighter().getHighlight(highlightIndex, 0));


    }


    //Generating random data to a list
    public void generateData() {
        for (int i = 0; i < DATA_MAX_COUNT; i++) {
            MyData myData = new MyData(new Random().nextInt(100) + 100);
            list.add(myData);
        }
    }

    //Simple func for adding data to entries and drawing chart
    private void drawChart() {

        CombinedData combinedData = new CombinedData();

        for (int i = 0; i < list.size(); i++) {
            MyData myData = list.get(i);
            entries.add(new Entry(i, myData.getValue(), myData));
        }

        LineDataSet lineDataSet = new LineDataSet(entries, "My data list");

        lineDataSet.setHighLightColor(Color.RED);
        lineDataSet.setHighlightLineWidth(3);

        LineData lineData = new LineData();
        lineData.addDataSet(lineDataSet);

        combinedData.setData(lineData);
        combinedChart.setData(combinedData);

        combinedChart.invalidate();
    }


    //Dummy data class
    public static class MyData {

        private int value;

        public MyData(int value) {
            this.value = value;
        }

        public int getValue() {
            return value;
        }

        public void setValue(int value) {
            this.value = value;
        }
    }
}

报错:java.lang.ArrayIndexOutOfBoundsException:length = 10; 指数= -1

答案:见上

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值