作者:李太有才_905 | 来源:互联网 | 2023-01-15 13:21
我有一个使用库MPAndroidChart的折线图
mChart.setData(data);
mChart.getAxisLeft().setTypeface(MyApplication.giloryItaly);
mChart.invalidate();
mChart.getXAxis().setTypeface(MyApplication.giloryItaly);
mChart.getAxisRight().setTypeface(MyApplication.giloryItaly);
问题是,AxisLeft
即使使用,字体值也无法更改
mChart.getAxisLeft().setTypeface(MyApplication.giloryItaly);
但适用于 XAxis
任何解决方案如何改变字体类型的AxisLeft
和AxisRight?
1> Amit Vaghela..:
在你linechart
,用
LineChart horizOntalPChartLine= (LineChart) findViewById(R.id.horizontalPChartLine);
XAxis xAxis = horizontalPChartLine.getXAxis();
xAxis.setTypeface(tf);
xAxis.setTextSize(12f);
xAxis.setTextColor(ColorTemplate.getHoloBlue());
xAxis.setEnabled(true);
请检查样式/修改轴