We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
OrderedXYSeries
1 parent a3c4ca3 commit 633ac98Copy full SHA for 633ac98
1 file changed
androidplot-core/src/main/java/com/androidplot/xy/OrderedXYSeries.java
@@ -9,13 +9,13 @@ public interface OrderedXYSeries extends XYSeries {
9
enum XOrder {
10
/**
11
* XVals are in strict ascending order such that:
12
- * x(i) > x(i+1) == true
+ * x(i) < x(i+1) == true
13
*/
14
ASCENDING,
15
16
17
* XVals are in strict descending order such that:
18
- * x(i) < x(i+1) == true
+ * x(i) > x(i+1) == true
19
20
DESCENDING,
21
0 commit comments