MPAndroid折线图XAxis标签,格式化程序不在新行中拆分字符串

时间:2017-08-14 15:54:15

标签: java android string mpandroidchart

我正在使用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"));
        }
    });

0 个答案:

没有答案