br.com.digilabs.jqplot.elements.Axes Maven / Gradle / Ivy
/*
* Copyright 2011 Inaiat H. Moraes.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* under the License.
*/
package br.com.digilabs.jqplot.elements;
import java.io.Serializable;
import br.com.digilabs.jqplot.axis.X2Axis;
import br.com.digilabs.jqplot.axis.XAxis;
import br.com.digilabs.jqplot.axis.Y2Axis;
import br.com.digilabs.jqplot.axis.YAxis;
/**
* Axes options are specified within an axes object at the top level of the plot
* options like so:
*
*
* {
* axes: {
* xaxis: {min: 5},
* yaxis: {min: 2, max: 8, numberTicks:4},
* x2axis: {pad: 1.5},
* y2axis: {ticks:[22, 44, 66, 88]}
* }
* }
*
*
* There are 2 x axes, 'xaxis' and 'x2axis', and 9 yaxes, 'yaxis', 'y2axis'.
* 'y3axis', ... Any or all of which may be specified.
*
* @author inaiat
*
*/
public class Axes implements Element {
/** The Constant serialVersionUID. */
private static final long serialVersionUID = -1464182411022493685L;
private XAxis xaxis;
private YAxis yaxis;
private X2Axis x2axis;
private Y2Axis y2axis;
public XAxis xAxisInstance() {
if (xaxis==null) {
xaxis = new XAxis();
}
return xaxis;
}
public YAxis yAxisInstance() {
if (yaxis==null) {
yaxis = new YAxis();
}
return yaxis;
}
public X2Axis x2axisInstance() {
if (x2axis==null) {
x2axis = new X2Axis();
}
return x2axis;
}
public Y2Axis y2axisInstance() {
if (y2axis==null) {
y2axis = new Y2Axis();
}
return y2axis;
}
/**
* @return the xaxis
*/
public XAxis getXaxis() {
return xaxis;
}
/**
* @param xaxis
* the xaxis to set
*/
public Axes setXaxis(XAxis xaxis) {
this.xaxis = xaxis;
return this;
}
/**
* @return the yaxis
*/
public YAxis getYaxis() {
return yaxis;
}
/**
* @param yaxis
* the yaxis to set
*/
public Axes setYaxis(YAxis yaxis) {
this.yaxis = yaxis;
return this;
}
/**
* @return the x2axis
*/
public X2Axis getX2axis() {
return x2axis;
}
/**
* @param x2axis
* the x2axis to set
*/
public Axes setX2axis(X2Axis x2axis) {
this.x2axis = x2axis;
return this;
}
/**
* @return the y2axis
*/
public Y2Axis getY2axis() {
return y2axis;
}
/**
* @param y2axis
* the y2axis to set
*/
public Axes setY2axis(Y2Axis y2axis) {
this.y2axis = y2axis;
return this;
}
}