如何在MPAndroid条形图之上增加文本值的大小?

时间:2016-09-23 11:03:45

标签: text charts bar-chart

我使用MPAndroid Chart创建了一个图表。我想知道如何在MPAndroid条形图中的每个条形顶部增加文本值的大小?我应该使用哪种API?我已在红圈中附加图片中圈出了值

enter image description here

2 个答案:

答案 0 :(得分:2)

您可以使用

进行尝试
barDataset.setValueTextSize(12f);

其中barDatasetBarDataSet

答案 1 :(得分:0)

经过一些试验,我能够找到问题的答案。这是在MPAndroidChart

上设置左右Y轴字体大小的代码
    import com.github.mikephil.charting.charts.CombinedChart;

 //Code snippet



      CombinedChart combinedChart = (CombinedChart) findViewById(R.id.chart);
      YAxis yaLeft = combinedChart.getAxisLeft();
      YAxis yaRight = combinedChart.getAxisRight();
      yaLeft.setTextSize(14/*textSize*/);
      yaRight.setTextSize(14/*textSize*/);