Uses of Class
com.quinncurtis.chart2djava.ChartText

Packages that use ChartText
com.quinncurtis.chart2djava   
com.quinncurtis.spcchartjava   
 

Uses of ChartText in com.quinncurtis.chart2djava
 

Subclasses of ChartText in com.quinncurtis.chart2djava
 class AxisLabels
          The AxisLabels class is the base class for all axes label classes in the QCChart2D class library.
 class AxisTitle
          The AxisTitle class manages and displays an axis title.
 class BarDatapointValue
          The BarDatapointValue class is used by the plotting routines to display numeric values on top of or inside bars in simple and group bar plots.
 class ChartLabel
          The ChartLabel is an abstract base class for chart label objects that are used to place formatted text in a chart.
 class ChartTitle
          The ChartTitle class creates a header, subheader and footer for a chart.
 class NumericAxisLabels
          The NumericAxisLabels class manages and displays the axis labels for linear and log axes.
 class NumericLabel
          The NumericLabel class is used to format floating point numbers as strings and position in a chart.
 class PolarAxesLabels
          The PolarAxesLabels class labels the tick marks of the x-axis, y-axis, and radial axis of the associated PolarAxes object.
 class StringAxisLabels
          The LinearAxisLabels class manages and displays the axis labels for linear and log axes.
 class StringLabel
          The StringLabel class is used to format strings and position them in a chart.
 class TimeAxisLabels
          The LinearAxisLabels class manages and displays the axis labels for linear and log axes.
 class TimeLabel
          The TimeLabel class is used to format GregorianCalendar objects as strings and position in a chart.
 

Methods in com.quinncurtis.chart2djava that return ChartText
 ChartText Legend.getLegendGeneralText(int item)
          Returns an ChartText object representing a header, subhead, or footer to the current legend.
 ChartText LegendItem.getLegendItemText()
          Returns the ChartText object used by the legend item.
 ChartText BubblePlotLegendItem.getLegendItemText()
          Returns the ChartText object used by the legend item.
 ChartText DataToolTip.getTextTemplate()
          Returns a reference to the tootip text template.
 

Methods in com.quinncurtis.chart2djava that return types with arguments of type ChartText
static java.util.Vector<ChartText> ChartText.TypeSafeVectorCopy(java.util.Vector<ChartText> source)
           Returns an object that is a typesafe copy of the source Vector object.
 

Methods in com.quinncurtis.chart2djava with parameters of type ChartText
 void Legend.addLegendGeneralText(int ntextpos, ChartText textobj)
          Add a header, subhead, or footer to the current legend.
 void ChartText.copy(ChartText source)
          Copies the source text object.
 void LegendItem.setLegendItemText(ChartText text)
          Sets the ChartText object used by the legend item.
 void BubblePlotLegendItem.setLegendItemText(ChartText text)
          Sets the ChartText object used by the legend item.
 void DataToolTip.setTextTemplate(ChartText texttemplate)
          Sets the tootip text template.
 

Method parameters in com.quinncurtis.chart2djava with type arguments of type ChartText
static java.util.Vector<ChartText> ChartText.TypeSafeVectorCopy(java.util.Vector<ChartText> source)
           Returns an object that is a typesafe copy of the source Vector object.
 

Constructors in com.quinncurtis.chart2djava with parameters of type ChartText
BubblePlotLegendItem(ChartText textitem, double rsize, GraphObj chartobj)
          This BubblePlotLegendItem constructor creates a new object based on the source ChartText object, and the source nsymbol value.
LegendItem(ChartText textitem, GraphObj chartobj)
          an LegendItem constructor creates a new object based on the source ChartText object, and the source nsymbol value.
LegendItem(ChartText textitem, int nsymbol)
          The LegendItem constructor creates a new object based on the source ChartText object and the source nsymbol value.
LegendItem(ChartText textitem, int nsymbol, GraphObj chartobj)
          an LegendItem constructor creates a new object based on the source ChartText object, and the source nsymbol value.
 

Uses of ChartText in com.quinncurtis.spcchartjava
 

Subclasses of ChartText in com.quinncurtis.spcchartjava
 class NotesLabel
          The NotesLabel class is used to manage the long and short versions of the notes strings used in the table display.
 

Methods in com.quinncurtis.spcchartjava that return ChartText
 ChartText SPCChartObjects.getTextTemplate()
          Get the text template for the data tooltip.
 ChartText ProbabilityChart.getTextTemplate()
          Get the default text object template for the data tooltip.
 

Methods in com.quinncurtis.spcchartjava that return types with arguments of type ChartText
 java.util.Vector<ChartText> SPCChartObjects.getAnnotationArray()
          Get the array of TextObject objects, representing the annotations of the chart.
 

Methods in com.quinncurtis.spcchartjava with parameters of type ChartText
 int SPCChartBase.addAnnotation(int chart, java.util.GregorianCalendar x, double y, ChartText textobj)
          Add a simple annotation at a specific point in the specified SPC chart.
 int SPCChartBase.addAnnotation(int chart, int datapointindex, ChartText textobj)
          Add a simple annotation to a data point in the specified SPC chart.
 int SPCChartBase.addAnnotation(SPCChartObjects chartobjects, java.util.GregorianCalendar x, double y, ChartText textobj)
          Add a simple annotation at a specific point in the specified SPC chart.
 int SPCChartBase.addAnnotation(SPCChartObjects chartobjects, int datapointindex, ChartText textobj)
          Add a simple annotation to a data point in the specified SPC chart.
 void SPCChartObjects.setTextTemplate(ChartText value)
          Set the text template for the data tooltip.