Uses of Class
com.quinncurtis.chart3djava.ChartPlot

Uses of ChartPlot in com.quinncurtis.chart3djava
 

Subclasses of ChartPlot in com.quinncurtis.chart3djava
 class ArrowPlot
          The ArrowPlot class displays a collection of arrows as defined by the data in a group dataset.
 class BubblePlot
          The BubblePlot class extends the GroupPlot class and displays bubble plots.
 class CandlestickPlot
          The CandlestickPlot class extends the GroupPlot class and displays stock market data in an open-high-low-close format common in financial technical analysis.
 class CellPlot
          The CellPlot class extends the GroupPlot class and displays cell plots.
 class ContourPlot
           
 class ErrorBarPlot
          The ErrorBarPlot class extends the GroupPlot class and displays error bars.
 class FloatingBarPlot
           
 class FloatingStackedBar
          The FloatingStackedBar class extends the GroupPlot class and displays stock market data in an open-high-low-close format common in financial technical analysis.
 class GroupBarPlot
          The GroupBarPlot class extends the GroupPlot class and displays data in group bar format.
 class GroupPlot
          The GroupPlot class is the abstract base class for the plot types that use group (multiple y-values for each x-value) data.
 class HistogramPlot
          Revisions 12/24/2005 changed calcHistogramRect
 class LineGapPlot
          The LineGapPlot class extends the GroupPlot class and i displays a line gap chart.
 class MultiLinePlot
          The MultiLinePlot class extends the GroupPlot class and displays group data in multi-line format.
 class MultiRibbonPlot
          The MultiRibbonPlot class extends the GroupPlot class and displays group data in multi-line format.
 class OHLCBarPlot
          The OHLCBarPlot class extends the GroupPlot class and displays stock market data in an open-high-low-close format common in financial technical analysis.
 class OHLCPlot
          The OHLCPlot class extends the GroupPlot class and displays stock market data in an open-high-low-close format common in financial technical analysis.
 class PieChart
          The PieChart class extends the Plot class and displays pie charts.
 class PieChartBase
          The PieChartBase class extends the Plot class and displays pie charts.
 class PipeLinePlot
          The PipeLinePlot class extends the SimplePlot class and displays simple datasets in pipe-line plot format.
 class SimpleBarPlot
          The SimpleBarPlot class extends the SimplePlot class and displays data in a bar format.
 class SimpleLineMarkerPlot
          Revisions 12/24/2005 changed lineMarkerPlot and drawLineMakerPlot
 class SimpleLinePlot
          The SimpleLinePlot class extends the SimplePlot class and displays simple datasets in line plot format.
 class SimplePlot
          The SimplePlot manages and displays all of the plot types that use simple (one y-value for each x-value) data.
 class SimpleRibbonPlot
          The SimpleRibbonPlot class extends the SimplePlot class and displays data in a bar format.
 class SimpleScatterPlot
          The SimpleScatterPlot class extends the SimplePlot class and displays simple datasets in scatter plot format where each data point is represented using a symbol.
 class StackedBarPlot
          The StackedBarPlot class extends the GroupPlot class and displays data in stacked bar format.
 class StackedLinePlot
          The StackedLinePlot class extends the GroupPlot class and displays data in stacked line format.
 class StackedRibbonPlot
          The StackedRibbonPlot class extends the StackedLinePlot class and displays data in stacked ribbon format.
 

Methods in com.quinncurtis.chart3djava that return ChartPlot
 ChartPlot MoveData.findObj(ChartPoint3D testpoint)
          This method finds the moveable plot object nearest the test point.
 ChartPlot DataToolTip.findObj(ChartPoint3D testpoint)
          This method finds the plot object nearest the test point.
 ChartPlot MoveData.findObj2(ChartPoint3D testpoint)
          This method finds the moveable plot object nearest the test point.
 ChartPlot DataToolTip.getSelectedPlotObj()
          In the mousePressed event, this function will return the selected plot object.
 

Methods in com.quinncurtis.chart3djava with parameters of type ChartPlot
 int StandardLegend.addLegendItem(java.lang.String stext, ChartPlot chartobj, int ngroup, java.awt.Font thefont)
          Add a legend item to the current legend, specifying the legend item text, symbol, the associated PlotObj object, the group number of the attributes to copy in the PlotObject, and font.
 int StandardLegend.addLegendItem(java.lang.String stext, int nsymbol, ChartPlot chartobj, int ngroup, java.awt.Font thefont)
          Add a legend item to the current legend, specifying the legend item text, symbol, the associated PlotObj object, the group number of the attributes to copy in the PlotObject, and font.
 void ChartPlot.copy(ChartPlot source)
          Copies the source plot object.
 void BarDatapointValue.initBarDatapointValue(NumericLabel numlabel, ChartPlot plotobj, ChartPoint3D datapointloc, ChartRectangle3D barrect)
          This method initializes the BarDatapointValue object.
static boolean ChartSupport.isStackedPlotType(ChartPlot plotobj)
          This method returns true if a plot object is one of the stacked (STACKEDBAR or STACKEDLINE) chart types.
 

Constructors in com.quinncurtis.chart3djava with parameters of type ChartPlot
BarDatapointValue(NumericLabel numlabel, ChartPlot plotobj, ChartPoint3D datapointloc, ChartRectangle3D barrect)
          This constructor creates a new BarDatapointValue object of a specified type, and scales it to match the specified minimum and maximum values.
ChartAttribute(ChartPlot source, int ngroup)
           This constructor creates a new ChartAttribute object as a copy of the ChartAttribute object associated with a specific group in an DChartPlot object.
LegendItem(PhysicalCoordinates transform, java.lang.String stext, ChartPlot chartobj, int ngroup, java.awt.Font thefont)
          an LegendItem constructor creates a new object based on the source chart scale, a text string, a symbol value, an GraphObj object, a group number, and an explicit font.
LegendItem(PhysicalCoordinates transform, java.lang.String stext, int nsymbol, ChartPlot chartobj, int ngroup, java.awt.Font thefont)
          an LegendItem constructor creates a new object based on the source chart scale, a text string, a symbol value, an GraphObj object, a group number, and an explicit font.