gpt4 book ai didi

Android mp android chart set type face for XAxisLeft

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:24:12 26 4
gpt4 key购买 nike

我有一个使用库 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

如何为 AxisLeftAxisRight 更改字体类型 的任何解决方案?

最佳答案

在你的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);

请查看Styling / modifying the axis

关于Android mp android chart set type face for XAxisLeft,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46581208/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com