XYPlot 上的格式点标签

Format point label on XYPlot

Androidplot tutorial中描述的方法 不适用于 API 版本 1.1.0。 class LineAndPointRenderer.

中没有方法 setPointLabeler()

该文档适用于非常旧版本的 Androidplot - 该方法已移至 LineAndPointFormatter:

LineAndPointFormatter formatter = new LineAndPointFormatter();
formatter.setPointLabeler(new PointLabeler() {
    @Override
    public String getLabel(XYSeries series, int index) {
        // your code here
    }
});