Interface ShapeFactory

All Known Implementing Classes:
DefaultShapeFactory, SeriesShapeFactory

public interface ShapeFactory
Deprecated.
This interface is no longer used, shapes are obtained from the DrawingSupplier.
Interface to be implemented by classes which provide shapes for indicating data points on a Plot.
Author:
Jeremy Bowman
  • Method Summary

    Modifier and Type Method Description
    Shape getShape​(int series, int item, double x, double y, double scale)
    Deprecated.
    Returns a Shape that can be used in plotting data.
    Shape getShape​(int series, Object category, double x, double y, double scale)
    Deprecated.
    Returns a Shape that can be used in plotting data.
  • Method Details

    • getShape

      Shape getShape​(int series, int item, double x, double y, double scale)
      Deprecated.
      Returns a Shape that can be used in plotting data. Used in XYPlots.
      Parameters:
      series - the index of the series.
      item - the index of the item.
      x - x-coordinate of the item.
      y - y-coordinate of the item.
      scale - the size.
      Returns:
      a Shape that can be used in plotting data.
    • getShape

      Shape getShape​(int series, Object category, double x, double y, double scale)
      Deprecated.
      Returns a Shape that can be used in plotting data. Used in CategoryPlots.
      Parameters:
      series - the index of the series.
      category - the category.
      x - x-coordinate of the category.
      y - y-coordinate of the category.
      scale - the size.
      Returns:
      a Shape that can be used in plotting data.