Examples of PlotAxis


Examples of gov.nasa.arc.mct.plot.adapter.PlotAxis

    // Create some wrappers
    plotLineFactory = (configuration.getAxisOrientationSetting() == AxisOrientationSetting.Z_AXIS_AS_TIME) ?
        new ScatterPlotLineFactory(this, rotated) : new TemporalPlotLineFactory(this, rotated);
       
    /* Configure plot axis wrappers */
    PlotAxis xAxisWrapper = new PlotterPlotAxis(getXAxis(),
        configuration.getXAxisMaximumLocation() == XAxisMaximumLocationSetting.MAXIMUM_AT_RIGHT);
    PlotAxis yAxisWrapper = new PlotterPlotAxis(getXAxis(),
        configuration.getYAxisMaximumLocation() == YAxisMaximumLocationSetting.MAXIMUM_AT_TOP);
   
    plotAxes[PlotAxisType.X.ordinal()] = xAxisWrapper;
    plotAxes[PlotAxisType.Y.ordinal()] = yAxisWrapper;
    plotAxes[PlotAxisType.INDEPENDENT.ordinal()] =
View Full Code Here

Examples of gov.nasa.arc.mct.plot.adapter.PlotAxis

    getXAxis().setBackground(appearance.getFrameBackground());
    getYAxis().setBackground(appearance.getFrameBackground());
    grid.setForeground(appearance.getGridColor());
    for (PlotAxisType axisType : PlotAxisType.values()) {
      Font     f = appearance.getFont(axisType);
      PlotAxis a = this.getAxis(axisType);
      if (a != null && f != null) {
        a.getRepresentation().setFont(f);
      }
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.