Ejemplo n.º 1
0
 /**
  * Sets the 'expTickLabelsFlag' flag. If the 'log10TickLabelsFlag' is false then this will set
  * whether or not "1e#"-style tick labels are used. The default is to use regular numeric tick
  * labels.
  *
  * @param flgVal true for "1e#"-style tick labels, false for log10 or regular numeric tick labels.
  */
 public void setExpTickLabelsFlag(boolean flgVal) {
   this.expTickLabelsFlag = flgVal;
   setupNumberFmtObj(); // setup number formatter obj
 }
Ejemplo n.º 2
0
 /**
  * Creates a new axis.
  *
  * @param label the axis label.
  */
 public LogarithmicAxis(String label) {
   super(label);
   setupNumberFmtObj(); // setup number formatter obj
 }