1

Method described in Androidplot tutorial doesn't work with API version 1.1.0. There is no method setPointLabeler() in class LineAndPointRenderer.

blewman
  • 15
  • 3

1 Answers1

0

That documentation is for a very old version of Androidplot - that method has moved into LineAndPointFormatter:

LineAndPointFormatter formatter = new LineAndPointFormatter();
formatter.setPointLabeler(new PointLabeler() {
    @Override
    public String getLabel(XYSeries series, int index) {
        // your code here
    }
});
Nick
  • 8,181
  • 4
  • 38
  • 63