I have a line chart using the library MPAndroidChart
mChart.setData(data);
mChart.getAxisLeft().setTypeface(MyApplication.giloryItaly);
mChart.invalidate();
mChart.getXAxis().setTypeface(MyApplication.giloryItaly);
mChart.getAxisRight().setTypeface(MyApplication.giloryItaly);
The problem is the AxisLeft font value cannot be changed even when using
mChart.getAxisLeft().setTypeface(MyApplication.giloryItaly);
but works well for XAxis
Any solution how to change font type for AxisLeft and AxisRight?