我将mpandroidchart
用于我的项目,它是折线图。
我不知道如何在我的标记视图中显示yAxisRight
值。我的自定义标记视图有三个TextView
,它们是垂直的。第一个显示xAxis值,第二个显示左侧yAxis值,我想在第三个yAxisRight
中显示TextView
值,但我不知道该怎么做。
以下是我的代码:
@Override
public void refreshContent(Entry e, Highlight highlight) {
if (fundType.equals("2") && wssFlag == 3)
{
// the xAxis value:
mDate.setText(date+" "+xVal.get(e.getXIndex()));
mNetValue.setText("估值:");
// the left yAxis value:
mJingZhiData.setText(formatNumber(e.getVal(), 4, true,'.'));
}
}