MPAndroidChart icon indicating copy to clipboard operation
MPAndroidChart copied to clipboard

draw a line from a larger point to a smaller

Open m2faridi opened this issue 3 years ago • 0 comments

getEntryIndex in class DataSet.java have bug

When I draw a line from a larger point to a smaller one, this function cannot work well

  ArrayList<Entry> entries = new ArrayList<>();
     entries.add(new Entry(30, 10));
     entries.add(new Entry(20, 10));
     entries.add(new Entry(10, 10));

How can this problem be solved?

m2faridi avatar Sep 19 '22 11:09 m2faridi