Skip to content

Instantly share code, notes, and snippets.

@kevinsdooapp
Created July 31, 2012 16:26
Show Gist options
  • Save kevinsdooapp/3218247 to your computer and use it in GitHub Desktop.
Save kevinsdooapp/3218247 to your computer and use it in GitHub Desktop.
LogarithmicAxis class that extends ValueAxis
import javafx.scene.chart.ValueAxis;
/**
* A logarithmic axis implementation for JavaFX 2 charts<br>
* <br>
*
* @author Kevin Senechal
*
*/
public class LogarithmicAxis extends ValueAxis<Number> {
private final DoubleProperty logUpperBound = new SimpleDoubleProperty();
private final DoubleProperty logLowerBound = new SimpleDoubleProperty();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment