如何在mpandroidchart折线图的markerview中显示yAxisRight值?

时间:2016-05-12 03:28:38

标签: android marker linechart mpandroidchart

我将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,'.')); 
      }
}

![我的截图]:http://i.stack.imgur.com/R32eI.png

0 个答案:

没有答案