Package plotter.xy.LinearXYPlotLine

Examples of plotter.xy.LinearXYPlotLine.LineMode


    /* Note that once a LegendEntry acquires a plot line, it may
     * apply its own setup to it. */
   
    linePlot = new LinearXYPlotLineWrapper(plot.getPlotView().getXAxis(), plot.getPlotView().getYAxis(),
        plot.getAxisOrientationSetting() == AxisOrientationSetting.X_AXIS_AS_TIME ? XYDimension.X : XYDimension.Y);
    LineMode lineMode = LineMode.STEP_XY;
    if (plot.getPlotAbstraction().getPlotLineConnectionType() == PlotLineConnectionType.DIRECT) {
      lineMode = LineMode.STRAIGHT;
    }
    linePlot.setLineMode(lineMode);
    linePlot.setForeground(color);
View Full Code Here

TOP

Related Classes of plotter.xy.LinearXYPlotLine.LineMode

Copyright © 2018 www.massapicom. 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.