Interface PlotFactory

All Known Implementing Classes:
PlotlyPlotFactory

public interface PlotFactory
  • Method Details

    • basicPlot

      BasicPlot basicPlot()
    • lineAndMarkerScatterPlot

      BasicPlot lineAndMarkerScatterPlot()
    • axis

      Axis axis(Axis.Type axisType, String label)
    • line

      Line line(double[] xVals, double[] yVals, javafx.scene.paint.Color color, LineStyles style, int pxThickness)
    • lineWithErrorBars

      Line lineWithErrorBars(double[] xVals, double[] yVals, double[] errorData, double[] errorDataMinus)
    • horizontalLine

      Line horizontalLine(double x1, double x2, double y, javafx.scene.paint.Color color, LineStyles style, int pxThickness)
    • verticalLine

      VerticalLine verticalLine(double x, double yRatio, String label)
    • rectangle

      Rectangle rectangle(double x1, double x2, double yRatio, String label, javafx.scene.paint.Color color)
    • rectangle

      Rectangle rectangle(double x1, double x2, int pxWidth, double yRatio, String label, javafx.scene.paint.Color edgeColor, javafx.scene.paint.Color fillColor, boolean draggable, boolean logScaleX)
    • createSymbol

      Symbol createSymbol(SymbolStyles style, String name, double x, double y, javafx.scene.paint.Color color, javafx.scene.paint.Color edgeColor, javafx.scene.paint.Color textColor, String text, boolean textVisible)