Skip to content

Instantly share code, notes, and snippets.

@kevinsdooapp
Created July 31, 2012 16:48
Show Gist options
  • Save kevinsdooapp/3218380 to your computer and use it in GitHub Desktop.
Save kevinsdooapp/3218380 to your computer and use it in GitHub Desktop.
getTickMarkLabel implementation for javafx 2 logarithmic axis
@Override
protected String getTickMarkLabel(Number value) {
NumberFormat formatter = NumberFormat.getInstance();
formatter.setMaximumIntegerDigits(6);
formatter.setMinimumIntegerDigits(1);
return formatter.format(value);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment