var scale = new Plottable.Scales.Linear();
var axis = new Plottable.Axes.Numeric(scale, "bottom")
.yAlignment("center")
.renderTo("svg#example");
window.addEventListener("resize", function() {
axis.redraw();
});
.tickLabelPosition()
/.tickLabelPosition(position)
Gets/sets the tick label position relative to the tick marks. Valid poisitions for tick labels are "top", "center", and "bottom" for a vertical Axes.Numeric
and "left", "center", and "right" for a horizontal Axes.Numeric
.