111
hxb
2022-11-24 0a3e07f10937484145f33c7560607b4b2353cb81
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.mm.android.deviceaddmodule.mobilecommon.widget.linechart.adapter;
 
import java.text.DecimalFormat;
 
/**
 * 按年显示的报表,气泡X轴显示适配器
 */
 
public class YearHighLightValueAdapter implements IValueAdapter {
    private DecimalFormat _formatter;
 
    public YearHighLightValueAdapter() {
    }
 
    @Override
    public String value2String(double value) {
        return String.format("%02d月", (int)value);
 
    }
}