我正在使用MPAndroid Line graph。我正在使用XAxis格式化程序来显示轴标签。在我的X轴上,我必须将日期显示为2016年1月(月和年之间的新行),以便它不会与其他文本重叠,因此月和年将垂直对齐。
我正在使用以下代码,但是它无法在字符串的空格和#34; MMM yyyy"(如2016年1月,2016年2月)之间创建新行。
xAxis.setValueFormatter(new IAxisValueFormatter() {
@Override
public String getFormattedValue(float value, AxisBase axis) {
return xAxisValueMap.get((int)value).replaceAll("\\s+",System.getProperty("line.separator"));
}
});