Serialized Form


Package com.objectplanet.chart

Class com.objectplanet.chart.BarChart extends Chart implements Serializable

Serialized Fields

barLabelColors

java.awt.Color[] barLabelColors

multiColorOn

boolean multiColorOn

barOutlineOn

boolean barOutlineOn

barOutlineColor

java.awt.Color barOutlineColor

autoLabelSpacingOn

boolean autoLabelSpacingOn

barWidthFraction

double barWidthFraction

barType

int barType

barShape

int barShape

Class com.objectplanet.chart.Chart extends GenericChart implements Serializable

Serialized Fields

chartData

ChartData chartData
This contains the chart data. The data consists of multiple series with a number of samples in each series.


visibleSamples

int[] visibleSamples
The start index and count of the currently visible samples.


sampleColors

java.awt.Color[] sampleColors

sampleColors2

java.awt.Color[] sampleColors2

sampleLabelColors

java.awt.Color[] sampleLabelColors

seriesLabelColors

java.awt.Color[] seriesLabelColors

valueLabelColors

java.awt.Color[] valueLabelColors

sampleLabelSelectionColor

java.awt.Color sampleLabelSelectionColor

sampleLabelStyle

int sampleLabelStyle

seriesLabelStyle

int seriesLabelStyle

valueLabelStyle

int valueLabelStyle

sampleLabelsOn

boolean sampleLabelsOn

seriesLabelsOn

boolean seriesLabelsOn

valueLabelsOn

boolean[] valueLabelsOn

barLabelsOn

boolean barLabelsOn

barLabels

java.lang.String[] barLabels

sampleDecimalCount

int[] sampleDecimalCount

seriesRange

int[] seriesRange

seriesFormatters

java.text.NumberFormat[] seriesFormatters

listeners

java.util.Vector<E> listeners

selectedSample

ChartSample selectedSample

lastSelectedSample

int lastSelectedSample

lastSelectedSeries

int lastSelectedSeries

lastSelection

ChartSample lastSelection

componentResized

boolean componentResized

Class com.objectplanet.chart.ChartApplet extends java.applet.Applet implements Serializable

Serialized Fields

chart

Chart chart
The chart component of the applet. Use this reference to access the charts methods directly via JavaScript or subclasses.


barChart

BarChart barChart
Reference to the BarChart component of the applet. Use it to access the BarChart methods directly via JavaScript or subclasses.


lineChart

LineChart lineChart
Reference to the LineChart component of the applet. Use it to access the LineChart methods directly via JavaScript or subclasses.


pieChart

PieChart pieChart
Reference to the PieChart component of the applet. Use it to access the PieChart methods directly via JavaScript or subclasses.


theChart

Chart theChart
The chart component of the applet.Use this reference to access the charts methods directly via JavaScript or subclasses.


plotterChart

GenericChart plotterChart
Reference to the PlotterChart component of the applet. Use it to access the PlotterChart methods directly via JavaScript or subclasses.


gaugeChart

java.awt.Component gaugeChart
Reference to the GaugeChart component of the applet. Use it to access the GaugeChart methods directly via JavaScript or subclasses.


chartType

java.lang.String chartType
The chart may be of "bar", "line", "pie", "time_line", "spline", "plotter", "gauge" type.


labelDelimiter

java.lang.String labelDelimiter
Used as the label delimiter for label string "arrays".


parentApplet

java.applet.Applet parentApplet
This reference is used if this applet is used as a component within another applet. This reference is needed to read the applet parameters and document base correctly.


overlayCharts

java.util.Hashtable<K,V> overlayCharts
The overlay charts, keyed by their names.


dataURL

java.lang.String dataURL
The URL the data is gotten from.


dataInterval

int dataInterval
This is the data interval time in seconds.


dataIntervalReset

boolean dataIntervalReset
Set to true if the chart should be reset before the data is reloaded.


dataIntervalThread

java.lang.Thread dataIntervalThread
This is the data interval loader thread.


refreshThread

java.lang.Thread refreshThread
This is the refresh thread.


sampleCountRead

int sampleCountRead
This is set after loadParameters() has been called in this class.


seriesCountRead

int seriesCountRead
This is set after loadParameters() has been called in this class.


parameterPrefix

java.lang.String parameterPrefix
Prefix used for reading applet parameters. This is used when reading parameters for overlay charts, or charts within other applets.


rangeStep

double[] rangeStep
The range step is used when setting the relative range.


automaticRefreshTime

int automaticRefreshTime
This is the time it should take between each time the chart is refreshed. This is to avoid charts not being painted correctly when scrolling.


urlList

java.util.Hashtable<K,V> urlList
The list of url parameters read.


urlTargetList

java.util.Hashtable<K,V> urlTargetList
The list of url target parameters read.


urlParameters

java.util.Hashtable<K,V> urlParameters
The list of parameters read from the data URL


timePlots

java.util.Hashtable<K,V> timePlots
The list of time plots in the TimeLineChart. Allows use of r URL_serie_timestamp parameters.


singleClickURLOn

boolean singleClickURLOn
Flag to indicate single click drilldown instead of double click.


lastSelectedSample

int lastSelectedSample
The index of the last selected sample, -1 if none is selected.


lastSelectedSeries

int lastSelectedSeries
The index of the last selected series, -1 if none is selected.


lastSelectedTime

long lastSelectedTime
This is used when checking for double clicks for the samples.


lastClickTime

long lastClickTime
This is used when checking for double clicks for the entyre chart.


doubleBufferingOff

boolean doubleBufferingOff
Flag to indicate if the double buffering is off or on. If true the double buffering is off.


sampleCountSet

boolean sampleCountSet
The sample count is either set using the sampleCount parameter, but if this is not specified, the sample count is the count of the sampleValues_N parameter with the most number of values. The sampleCount parameter overrides.


URLOpened

boolean URLOpened
Used to tell that an URL has been opened so it is not opened twice by different methods.


dataLoader

ChartDataLoader dataLoader
The ChartDataLoader is used to load data read by the ChartApplet to the Chart.


barPanel

NonFlickerPanel barPanel
The nonflicker panel is used to avoid flicker. The chart is placed inside the non flicker panel, which is placed in the applet.


linePanel

NonFlickerPanel linePanel

piePanel

NonFlickerPanel piePanel

parameters

java.util.Hashtable<K,V> parameters
The applet parameters where the keys are names and values are values.

Class com.objectplanet.chart.ChartData extends java.lang.Object implements Serializable

Serialized Fields

data

ChartSample[][] data
These are the samples of the chart. The samples are organized in a number of data series.


sampleLookup

java.util.Hashtable<K,V> sampleLookup
The sampels can be looked up through a key instead of the index.


seriesLabels

java.lang.String[] seriesLabels
The series labels are used per series.


sampleLabels

java.lang.String[] sampleLabels
The sample labels are used per sample across all the series.


seriesCount

int seriesCount
The series count is the number of data series.


sampleCount

int sampleCount
The sample count is the number of samples in a data series.


changedTime

long changedTime
The last time the chart's data changed. Used by clients to check if the data has changed since the last time they checked.

Class com.objectplanet.chart.ChartRenderer extends Renderer implements Serializable

Serialized Fields

legend

Legend legend
This contains the legend data.


legendRenderer

LegendRenderer legendRenderer
Used to paint the legend.


gridRenderer

GridRenderer gridRenderer
Used to paint the grid.


overlayRenderers

java.util.Vector<E> overlayRenderers
This contains any overlayed chart renderers.


parentRenderer

ChartRenderer parentRenderer
The parent of the overlay chart.


selectedOverlay

GenericChart selectedOverlay

external_gc

java.awt.Graphics external_gc

externalGraphicsOn

boolean externalGraphicsOn

offscreen

java.awt.Image offscreen

labelSizeCache

java.util.Hashtable<K,V> labelSizeCache

lastCalculationTime

long lastCalculationTime

mouseOverSampleIndex

int mouseOverSampleIndex

mouseOverSeriesIndex

int mouseOverSeriesIndex

mousePosition

java.awt.Point mousePosition

display3dOn

boolean display3dOn

depth3dPoint

java.awt.Point depth3dPoint

Class com.objectplanet.chart.ChartSample extends java.lang.Object implements Serializable

Serialized Fields

value

java.lang.Double value
The value of the sample.


label

java.lang.String label
The label of the sample.


labelColor

java.awt.Color labelColor

series

int series

index

int index

key

java.lang.Object key

selected

boolean selected

Class com.objectplanet.chart.ChartServlet extends javax.servlet.GenericServlet implements Serializable

Serialized Fields

chart

Chart chart
The chart component used.


plotterChart

PlotterChart plotterChart
The plotter chart component used.


gaugeChart

GaugeChart gaugeChart
The gauge chart component used.


dataLoader

ChartDataLoader dataLoader
The data loader used to load chart parameters.


type

java.lang.String type
The chart may be of "bar", "line", "pie", "time_line", "spline", "plotter" type.


pngEncoder

PngEncoder pngEncoder
The png encoder used to encode the charts as png images.


format

java.lang.String format
The image format to use.


jpegQuality

int jpegQuality
The quality of the returned jpeg image.


encoding

java.lang.String encoding
The encoding used to read data from an URL.


urlList

java.util.Hashtable<K,V> urlList
The list of url parameters read.


urlTargetList

java.util.Hashtable<K,V> urlTargetList
The list of url target parameters read.


imageList

java.util.Hashtable<K,V> imageList
The list of image parameters read.

Class com.objectplanet.chart.GenericChart extends javax.swing.JComponent implements Serializable

Serialized Fields

renderer

ChartRenderer renderer
Used to paint the chart data and labels.


legend

Legend legend
This contains the legend data.


legendRenderer

LegendRenderer legendRenderer
Used to paint the legend.


grid

Grid grid
This contains the grid data.


gridRenderer

GridRenderer gridRenderer
Used to paint the grid.


overlayCharts

java.util.Vector<E> overlayCharts
This contains any overlayed charts.


chartTitle

java.lang.String chartTitle

chartTitleOn

boolean chartTitleOn

floatingOnLegendOn

boolean floatingOnLegendOn

thousandsDelimiter

java.lang.String thousandsDelimiter

display3dOn

boolean display3dOn

depth3dPoint

java.awt.Point depth3dPoint

depth3d

int depth3d

gridOutline3DOn

boolean gridOutline3DOn

chartBackground

java.awt.Color chartBackground

chartBackground2

java.awt.Color chartBackground2

background2

java.awt.Color background2

alternateChartBackground

java.awt.Color alternateChartBackground

chartForeground

java.awt.Color chartForeground

gridImage

java.lang.String gridImage

automaticRepaintOn

boolean automaticRepaintOn

preferredSize

java.awt.Dimension preferredSize

printAsBitmap

boolean printAsBitmap

overlayChartOn

boolean overlayChartOn

servletModeOn

boolean servletModeOn

multiSeriesOn

boolean multiSeriesOn

displayVersionOn

boolean displayVersionOn

images

java.util.Hashtable<K,V> images

labels

java.util.Hashtable<K,V> labels

labelFonts

java.util.Hashtable<K,V> labelFonts

labelAngles

java.util.Hashtable<K,V> labelAngles

labelIDs

java.lang.String[] labelIDs

labelTexts

java.util.Hashtable<K,V> labelTexts

labelXs

java.util.Hashtable<K,V> labelXs

labelYs

java.util.Hashtable<K,V> labelYs

labelURLs

java.util.Hashtable<K,V> labelURLs

labelSeries

java.util.Hashtable<K,V> labelSeries

labelSamples

java.util.Hashtable<K,V> labelSamples

labelColors

java.util.Hashtable<K,V> labelColors

overlayInsets

double[] overlayInsets

old_cursor

java.awt.Cursor old_cursor

new_cursor

java.awt.Cursor new_cursor

legendSelection

boolean[] legendSelection

zoomOn

boolean zoomOn

antialiasingOn

boolean antialiasingOn

chartType

java.lang.String chartType

parentChart

GenericChart parentChart

numberFormatter

java.text.NumberFormat numberFormatter

currentLocale

java.util.Locale currentLocale

needRender

boolean needRender

needGraphBounds

boolean needGraphBounds

needChartCalculation

boolean needChartCalculation

labelSizeCache

java.util.Hashtable<K,V> labelSizeCache

imageTracker

java.awt.MediaTracker imageTracker

servletFrame

java.awt.Frame servletFrame

lastRenderTime

long lastRenderTime

mousePressX

int mousePressX

mousePressY

int mousePressY

shouldSelect

boolean shouldSelect

dragged_label

java.lang.String dragged_label

dragged_start_x

double dragged_start_x

dragged_start_y

double dragged_start_y

c2

Chart2 c2

bufferedImageClass

java.lang.Class<T> bufferedImageClass
This class instance is used instead of hardcoding the BufferedImage, which stops Microsft VM from loading the applet.


bufferedImageConstructor

java.lang.reflect.Constructor<T> bufferedImageConstructor

bufferedImageClass_tried_loading

boolean bufferedImageClass_tried_loading

TYPE_INT_RGB

int TYPE_INT_RGB

Class com.objectplanet.chart.Grid extends java.lang.Object implements Serializable

Serialized Fields

chart

GenericChart chart
The chart object.


rangeOn

boolean[] rangeOn

upperRange

double[] upperRange

lowerRange

double[] lowerRange

currentUpperRange

double[] currentUpperRange

currentLowerRange

double[] currentLowerRange

rangeInterval

double[] rangeInterval

rangePosition

int[] rangePosition

rangeColor

java.awt.Color[] rangeColor

rangeLabelsOn

boolean[] rangeLabelsOn

leftSampleAxisRange

double leftSampleAxisRange

rightSampleAxisRange

double rightSampleAxisRange

valueLinesOn

boolean valueLinesOn

valueLinesColor

java.awt.Color valueLinesColor

maxValueLineCount

int maxValueLineCount

maxGridLineCount

int maxGridLineCount

gridLines

double[] gridLines

defaultGridLines

double[] defaultGridLines

defaultGridLinesColor

java.awt.Color defaultGridLinesColor

gridLineColors

java.awt.Color[] gridLineColors

rangeDecimalCount

int[] rangeDecimalCount

gridAlignment

int gridAlignment

rightToLeftScrollingOn

boolean rightToLeftScrollingOn

gridAdjustment

boolean[] gridAdjustment

graphInsets

java.awt.Insets graphInsets

targetsLabel

java.util.Hashtable<K,V> targetsLabel

targetsValue

java.util.Hashtable<K,V> targetsValue

targetsColor

java.util.Hashtable<K,V> targetsColor

targetsStyle

java.util.Hashtable<K,V> targetsStyle

targetsRange

java.util.Hashtable<K,V> targetsRange

targetLabelsPosition

int targetLabelsPosition

rangeFormatters

java.text.NumberFormat[] rangeFormatters

rangeAdjusterOn

boolean[] rangeAdjusterOn

rangeAdjusterPosition

int rangeAdjusterPosition

rangeAdjusted

int[] rangeAdjusted

sampleScrollerOn

boolean sampleScrollerOn

Class com.objectplanet.chart.GridRenderer extends Renderer implements Serializable

Serialized Fields

graphBounds

java.awt.Rectangle graphBounds

totalGraphBounds

java.awt.Rectangle totalGraphBounds

chartDataBounds

java.awt.Rectangle chartDataBounds

rangeBounds

java.awt.Rectangle[] rangeBounds

rangeAdjusterBounds

java.awt.Rectangle[] rangeAdjusterBounds

sampleScrollerBounds

java.awt.Rectangle sampleScrollerBounds

zeroLine

int[] zeroLine

leftScrollerFactor

double leftScrollerFactor

rightScrollerFactor

double rightScrollerFactor

sampleScrollerSpace

int sampleScrollerSpace

leftAdjusterPos

int leftAdjusterPos

rightAdjusterPos

int rightAdjusterPos

adjusterIndex

int adjusterIndex

lastAdjusterClick

int lastAdjusterClick

leftPushed

boolean leftPushed

rightPushed

boolean rightPushed

insideLeftButton

boolean insideLeftButton

insideRightButton

boolean insideRightButton

adjustingUpper

boolean adjustingUpper

adjustingLower

boolean adjustingLower

slidingAdjuster

boolean slidingAdjuster

adjustingLeft

boolean adjustingLeft

adjustingRight

boolean adjustingRight

slidingScroller

boolean slidingScroller

lastScrollerClick

int lastScrollerClick

lastClickTime

long lastClickTime

zoomedOnMousePress

boolean zoomedOnMousePress

zoomOutPushed

boolean zoomOutPushed

gridEdgeToAdjust

int gridEdgeToAdjust

mouseBox

java.awt.Rectangle mouseBox

mousePressX

int mousePressX

mousePressY

int mousePressY

scrollerThread

java.lang.Thread scrollerThread

display3dOn

boolean display3dOn

gridAlignment

int gridAlignment

depth3dPoint

java.awt.Point depth3dPoint

chart

Chart chart
The chart object

Class com.objectplanet.chart.Legend extends java.lang.Object implements Serializable

Serialized Fields

legendOn

boolean legendOn

legendColumns

int legendColumns

legendPosition

int legendPosition

legendReverseOn

boolean legendReverseOn

legendLabels

java.lang.String[] legendLabels

legendColors

java.awt.Color[] legendColors

legendImages

java.lang.String[] legendImages

labelColors

java.awt.Color[] labelColors

legendBoxSizeAsFont

boolean legendBoxSizeAsFont

Class com.objectplanet.chart.LegendRenderer extends Renderer implements Serializable

Serialized Fields

legendBounds

java.awt.Rectangle[] legendBounds

actualLegend

java.awt.Rectangle actualLegend

visibleLegend

java.awt.Rectangle visibleLegend

verticalLegendScroller

java.awt.Rectangle verticalLegendScroller

horizontalLegendScroller

java.awt.Rectangle horizontalLegendScroller

verticalLegendFactor

double verticalLegendFactor

horizontalLegendFactor

double horizontalLegendFactor

slidingVerticalLegend

boolean slidingVerticalLegend

slidingHorizontalLegend

boolean slidingHorizontalLegend

verticalLegendScrollerOn

boolean verticalLegendScrollerOn

horizontalLegendScrollerOn

boolean horizontalLegendScrollerOn

topLegendPushed

boolean topLegendPushed

bottomLegendPushed

boolean bottomLegendPushed

leftLegendPushed

boolean leftLegendPushed

rightLegendPushed

boolean rightLegendPushed

legendRowHeight

int[] legendRowHeight

legendColumnWidth

int[] legendColumnWidth

lastScrollerClick

int lastScrollerClick

Class com.objectplanet.chart.LineChart extends Chart implements Serializable

Serialized Fields

autoLabelSpacingOn

boolean autoLabelSpacingOn

lineWidth

int[] lineWidth

line3dDepth

double[] line3dDepth

outlineOn

boolean[] outlineOn

lineStroke

float[][] lineStroke

lineStyle

int[] lineStyle

stackedOn

boolean stackedOn

line3DLayout

int line3DLayout

sampleHighlightOn

boolean[][] sampleHighlightOn

sampleHighlightOn_all

boolean[] sampleHighlightOn_all

sampleHighlightStyle

int[] sampleHighlightStyle

sampleHighlightSize

int[] sampleHighlightSize

seriesLinesOn

boolean[] seriesLinesOn

connectedLinesOn

boolean[] connectedLinesOn

highlightImage

java.lang.String highlightImage

highlightImages_all

java.lang.String[] highlightImages_all

highlightImages

java.lang.String[][] highlightImages

missingValuesInterpolated

boolean missingValuesInterpolated

areaSeries

int[][] areaSeries

areaColors

java.awt.Color[] areaColors

areaColors2

java.awt.Color[] areaColors2

Class com.objectplanet.chart.NonFlickerPanel extends java.awt.Panel implements Serializable

Serialized Fields

offscreen

java.awt.Image offscreen
The offscreen image to paint the components on.

Class com.objectplanet.chart.PieChart extends Chart implements Serializable

Serialized Fields

pieAngle

int pieAngle

pieDepth

double pieDepth

percentLabelsOn

boolean percentLabelsOn

pieLabelsOn

boolean pieLabelsOn

percentDecimalCount

int percentDecimalCount

selectionStyle

int selectionStyle

sliceSeperatorOn

boolean sliceSeperatorOn

sliceSeperatorColor

java.awt.Color sliceSeperatorColor

detachedDistance

double detachedDistance

detachedSlices

java.util.Hashtable<K,V> detachedSlices

percentLabelStyle

int percentLabelStyle

insideLabelColor

java.awt.Color insideLabelColor

insideLabelColors

java.awt.Color[] insideLabelColors

outsideLabelColor

java.awt.Color outsideLabelColor

outsideLabelColors

java.awt.Color[] outsideLabelColors

pointingLabelColor

java.awt.Color pointingLabelColor

pointingLabelColors

java.awt.Color[] pointingLabelColors

gradientSamplesOn

boolean gradientSamplesOn

startAngle

int[] startAngle

pieRotationOn

boolean pieRotationOn

Class com.objectplanet.chart.Renderer extends java.lang.Object implements Serializable

Serialized Fields

rotateImage

java.awt.Image rotateImage

pixel_grabber_image

java.awt.Image pixel_grabber_image

is_java2

boolean is_java2

chart

GenericChart chart
The chart object


Package com.objectplanet.chart.ext

Class com.objectplanet.chart.ext.GaugeChart extends java.awt.Component implements Serializable

Serialized Fields

startAngle

int startAngle

endAngle

int endAngle

range

double range

lowerRange

double lowerRange

rangeInterval

double rangeInterval

rangeLabelsOn

boolean rangeLabelsOn

rangeColor

java.awt.Color rangeColor

rangeLabelColor

java.awt.Color rangeLabelColor

floatingLabelColor

java.awt.Color floatingLabelColor

rangeHighlight

java.awt.Color rangeHighlight

floatingLabelsOn

boolean floatingLabelsOn

sectorHighlights

double[][] sectorHighlights

sectorColors

java.awt.Color[] sectorColors

borderWidths

int[] borderWidths

borderColors

java.awt.Color[] borderColors

borderColors2

java.awt.Color[] borderColors2

pointerValues

double[] pointerValues

pointerColors

java.awt.Color[] pointerColors

pointerStyles

int[] pointerStyles

pointerSize

float[] pointerSize

pointerLabels

java.lang.String[] pointerLabels

pointerLabelsOn

boolean pointerLabelsOn

listeners

java.util.Vector<E> listeners

preferredSize

java.awt.Dimension preferredSize

rangeLabelStyle

int rangeLabelStyle

rangeTickStyle

int rangeTickStyle

rangeTickSize

int rangeTickSize

rangeStartAngle

int rangeStartAngle

rangeEndAngle

int rangeEndAngle

labelFonts

java.util.Hashtable<K,V> labelFonts

chartTitle

java.lang.String chartTitle

chartTitleOn

boolean chartTitleOn

labels

java.util.Hashtable<K,V> labels

rangeDecimalCount

int[] rangeDecimalCount

numberFormatter

java.text.NumberFormat numberFormatter

images

java.util.Hashtable<K,V> images

mousePosition

java.awt.Point mousePosition

mouseAngle

double mouseAngle

gaugeAlignment

int gaugeAlignment

chartBackground

java.awt.Color chartBackground

chartForeground

java.awt.Color chartForeground

chartBackground2

java.awt.Color chartBackground2

background2

java.awt.Color background2

edgeColor

java.awt.Color edgeColor

c2

Chart2 c2

servletFrame

java.awt.Frame servletFrame

servletModeOn

boolean servletModeOn

legend

Legend legend
This contains the legend data.


actualLegend

java.awt.Rectangle actualLegend

legendRowHeight

int[] legendRowHeight

legendColumnWidth

int[] legendColumnWidth

legendBounds

java.awt.Rectangle[] legendBounds

mouseOverSeriesIndex

int mouseOverSeriesIndex

pointerSelected

boolean[] pointerSelected

center

java.awt.Point center

radius

int radius

clip

java.awt.Shape clip

border_offset

int border_offset

graphBounds

java.awt.Rectangle graphBounds

offscreen

java.awt.Image offscreen

external_gc

java.awt.Graphics external_gc

externalGraphicsOn

boolean externalGraphicsOn

pointerBounds

java.awt.Polygon[] pointerBounds

imageTracker

java.awt.MediaTracker imageTracker

bufferedImageClass

java.lang.Class<T> bufferedImageClass
This class instance is used instead of hardcoding the BufferedImage, which stops Microsft VM from loading the applet.


bufferedImageConstructor

java.lang.reflect.Constructor<T> bufferedImageConstructor

bufferedImageClass_tried_loading

boolean bufferedImageClass_tried_loading

TYPE_INT_RGB

int TYPE_INT_RGB

Class com.objectplanet.chart.ext.PlotterChart extends GenericChart implements Serializable

Serialized Fields

seriesCount

int seriesCount
Used to paint the chart data and labels.


seriesOn

boolean[] seriesOn

plots

double[][][] plots

plotSize

int[][] plotSize

plotSize_all

int[] plotSize_all

plotStyle

int[] plotStyle

plotLabels

java.lang.String[][] plotLabels

plotLabelsOn

boolean plotLabelsOn

plotLabelStyle

int plotLabelStyle

XRangeLabelStyle

int XRangeLabelStyle

XRangeLabels

java.util.Hashtable<K,V> XRangeLabels

XRangeLabelLinesOn

java.util.Hashtable<K,V> XRangeLabelLinesOn

XRangeLabelColors

java.util.Hashtable<K,V> XRangeLabelColors

XRangeLabelsColor

java.awt.Color XRangeLabelsColor

seriesColors

java.awt.Color[] seriesColors

XUpperRange

double XUpperRange

XLowerRange

double XLowerRange

YUpperRange

double YUpperRange

YLowerRange

double YLowerRange

XCurrentUpperRange

double XCurrentUpperRange

XCurrentLowerRange

double XCurrentLowerRange

YCurrentUpperRange

double YCurrentUpperRange

YCurrentLowerRange

double YCurrentLowerRange

XRangeInterval

double XRangeInterval

YRangeInterval

double YRangeInterval

XRangeDecimalCount

int XRangeDecimalCount

YRangeDecimalCount

int YRangeDecimalCount

XMaxValueLineCount

int XMaxValueLineCount

YMaxValueLineCount

int YMaxValueLineCount

XAxisOn

boolean XAxisOn

YAxisOn

boolean YAxisOn

rangeOn

boolean[] rangeOn

XValueLinesOn

boolean XValueLinesOn

YValueLinesOn

boolean YValueLinesOn

XValueLinesColor

java.awt.Color XValueLinesColor

YValueLinesColor

java.awt.Color YValueLinesColor

rangeColor

java.awt.Color[] rangeColor

targetsLabel

java.util.Hashtable<K,V> targetsLabel

targetsValue

java.util.Hashtable<K,V> targetsValue

targetsColor

java.util.Hashtable<K,V> targetsColor

targetsStyle

java.util.Hashtable<K,V> targetsStyle

targetLabelsPosition

int targetLabelsPosition

chartBackground

java.awt.Color chartBackground

chartForeground

java.awt.Color chartForeground

XAxisColor

java.awt.Color XAxisColor

YAxisColor

java.awt.Color YAxisColor

gridLines

double[] gridLines

gridLineColors

java.awt.Color[] gridLineColors

preferredSize

java.awt.Dimension preferredSize

automaticRepaintOn

boolean automaticRepaintOn

connectedLinesOn

boolean[] connectedLinesOn

lineWidth

int[] lineWidth

mouseOverSampleIndex

int mouseOverSampleIndex

mouseOverSeriesIndex

int mouseOverSeriesIndex

listeners

java.util.Vector<E> listeners

seriesLabels

java.lang.String[] seriesLabels

seriesLabelColors

java.awt.Color[] seriesLabelColors

seriesLabelStyle

int seriesLabelStyle

seriesLabelsOn

boolean seriesLabelsOn

valueLabelStyle

int valueLabelStyle

XValueLabelsOn

boolean[] XValueLabelsOn

YValueLabelsOn

boolean[] YValueLabelsOn

XValueDecimalCount

int[] XValueDecimalCount

YValueDecimalCount

int[] YValueDecimalCount

labels

java.util.Hashtable<K,V> labels

labelFonts

java.util.Hashtable<K,V> labelFonts

labelAngles

java.util.Hashtable<K,V> labelAngles

floatingOnLegendOn

boolean floatingOnLegendOn

chartTitle

java.lang.String chartTitle

chartTitleOn

boolean chartTitleOn

images

java.util.Hashtable<K,V> images

gridImage

java.lang.String gridImage

plotImage

java.lang.String plotImage

plotImages_all

java.lang.String[] plotImages_all

graphInsets

java.awt.Insets graphInsets

gridAdjustment

boolean[] gridAdjustment

currentLocale

java.util.Locale currentLocale

thousandsDelimiter

java.lang.String thousandsDelimiter

urlList

java.util.Hashtable<K,V> urlList

autoLabelSpacingOn

boolean autoLabelSpacingOn

plotSortingOn

boolean[] plotSortingOn

zoomOn

boolean zoomOn

rangeFormatters

java.text.NumberFormat[] rangeFormatters

rangeAdjusterOn

boolean[] rangeAdjusterOn

numberFormatter

java.text.NumberFormat numberFormatter

mousePosition

java.awt.Point mousePosition

imageTracker

java.awt.MediaTracker imageTracker

selectedSeries

int selectedSeries

selectedSample

int selectedSample

lastSelectedSeries

int lastSelectedSeries

lastSelectedSample

int lastSelectedSample

servletFrame

java.awt.Frame servletFrame

c2

Chart2 c2

bufferedImageClass

java.lang.Class<T> bufferedImageClass
This class instance is used instead of hardcoding the BufferedImage, which stops Microsft VM from loading the applet.


bufferedImageConstructor

java.lang.reflect.Constructor<T> bufferedImageConstructor

bufferedImageClass_tried_loading

boolean bufferedImageClass_tried_loading

TYPE_INT_RGB

int TYPE_INT_RGB

Class com.objectplanet.chart.ext.PlotterChartRenderer extends ChartRenderer implements Serializable

Serialized Fields

adjustingUpper

boolean adjustingUpper

adjustingLower

boolean adjustingLower

slidingAdjuster

boolean slidingAdjuster

lastAdjusterClick

int lastAdjusterClick

adjusterIndex

int adjusterIndex

rangeAdjusterBounds

java.awt.Rectangle[] rangeAdjusterBounds

mouseBox

java.awt.Rectangle mouseBox

zoomOutPushed

boolean zoomOutPushed

mousePressX

int mousePressX

mousePressY

int mousePressY

graphBounds

java.awt.Rectangle graphBounds

chartDataBounds

java.awt.Rectangle chartDataBounds

gridEdgeToAdjust

int gridEdgeToAdjust

lastClickTime

long lastClickTime

STEPS

double[] STEPS

chart

PlotterChart chart
The plotter chart object

Class com.objectplanet.chart.ext.PlotterGrid extends Grid implements Serializable

Class com.objectplanet.chart.ext.SplineChart extends LineChart implements Serializable

Class com.objectplanet.chart.ext.TimeLineChart extends LineChart implements Serializable

Serialized Fields

dateParser

java.text.SimpleDateFormat dateParser
The date formatter used when parsing times and dates.


dateFormat

java.text.SimpleDateFormat dateFormat
The date formatter used when displaying times and dates.


dateParserPattern

java.lang.String dateParserPattern
The current data parser pattern.


lowerTime

long lowerTime
The lower time of the x-axis.


upperTime

long upperTime
The upper time of the x-axis.


timeScale

double timeScale
The timescale in seconds.


autoTimeLabelsOn

boolean autoTimeLabelsOn
Generate time labels automatically.


timeLabels

java.lang.String[] timeLabels
Contains the time labels from the timePlots parameters.


gridLines

double[] gridLines
Contains the position of the grid lines.


gridLineCount

int gridLineCount