add extra spaces in title of a plot when not all values are shown
This commit is contained in:
@@ -303,7 +303,7 @@ public class ScatterPlot {
|
|||||||
|
|
||||||
result.append(" (");
|
result.append(" (");
|
||||||
if (plottedValues != values) {
|
if (plottedValues != values) {
|
||||||
result.append(String.format("%,d/%,d", plottedValues, values));
|
result.append(String.format("%,d / %,d", plottedValues, values));
|
||||||
} else {
|
} else {
|
||||||
result.append(String.format("%,d", values));
|
result.append(String.format("%,d", values));
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user