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(" (");
|
||||
if (plottedValues != values) {
|
||||
result.append(String.format("%,d/%,d", plottedValues, values));
|
||||
result.append(String.format("%,d / %,d", plottedValues, values));
|
||||
} else {
|
||||
result.append(String.format("%,d", values));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user