Skip to content
Snippets Groups Projects
Commit 7e8e2360 authored by Tim Molter's avatar Tim Molter
Browse files

Merge pull request #109 from nroduit/master

Fix displaying logarithmic tick labels
parents abe6df93 877cee13
No related branches found
No related tags found
No related merge requests found
......@@ -116,7 +116,8 @@ public class AxisTickLogarithmicCalculator extends AxisTickCalculator {
tickLabels.add(numberFormatter.formatLogNumber(j, axisDirection));
}
else {
tickLabels.add(null);
// Set a space to avoid Zero length string passed to TextLayout constructor
tickLabels.add(" ");
}
// add all the tick marks though
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment