MPAndroidChart条形图y轴标签颜色

时间:2018-05-09 09:21:49

标签: android bar-chart mpandroidchart

是否可以在 mpandroidchart 中为y轴标签设置不同的标签颜色?可能怎么样?任何帮助赞赏。

2 个答案:

答案 0 :(得分:2)

添加以下行代码

chart.getAxisLeft().setTextColor(ContextCompat.getColor(this, R.color.red)); // left y-axis

enter image description here

答案 1 :(得分:0)

您可以像这样自定义YAxisRenderer来实现它。 将其添加到您的图表 echo "This is test variable: ".$test['keyhere']." and...";


  chart.setRendererLeftYAxis(new MyYAxisLeftRenderer(chart.getViewPortHandler(),
         chart.getAxisLeft(),chart.getTransformer(YAxis.AxisDependency.LEFT)));