MPAndroidChart MarkerView

前端之家收集整理的这篇文章主要介绍了MPAndroidChart MarkerView前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我打算在 MPAndroidChart的折线图中查找特定点,然后显示标记以在按下按钮后突出显示该点.给出的示例是标记仅在触摸事件后显示,在我的情况下是不同的.我试过下面的代码,但没有用,有人可以教我,我会很感激.
Highlight h = new Highlight((int) valIndex,linechart2.getData().getDataSetCount());
        linechart2.highlightValue(h,true);
mv2.refreshContent2(valueYAxis.get((int) valIndex),h);
linechart2.getMarkerView();
linechart2.setDrawMarkerViews(true);
linechart2.getData().setHighlightEnabled(true);
//        RefreshChart();
linechart2.invalidate();

解决方法

您可以使用Chart对象上的以下方法之一以编程方式轻松突出显示值:

> highlightValues(Highlight [] highs):突出显示给定DataSet中给定索引处的值.提供null或空数组以撤消所有突出显示.
> highlightValue(int xIndex,int dataSetIndex):突出显示给定DataSet中给定x-index的值.提供-1作为x-index或dataSetIndex以撤消所有突出显示.

一切都在wiki.

原文链接:https://www.f2er.com/android/314549.html

猜你在找的Android相关文章