- All Superinterfaces:
DataSeries
, DataSeriesInternal
, OHLCDataSeries
, PlotExceptionCause
, Serializable
, Series
, SeriesInternal
, ValidatingDataSeries
, XYDataSeries
, XYDataSeriesInternal
- All Known Implementing Classes:
OHLCDataSeriesArray
, OHLCDataSeriesSwappableTableArray
, OHLCDataSeriesTableArray
, TransformedOHLCDataSeries
, TransformedOHLCDataSeries.TransformedOHLCDataSeriesSnapshot
-
Method Summary
Create a copy of the series on a different set of axes.
Returns a snapshot of this dataset which will not update.
double
Gets the close value at index i
.
double
Gets the high value at index i
.
double
Gets the low value at index i
.
double
Gets the open value at index i
.
Methods inherited from interface com.illumon.iris.db.plot.datasets.DataSeries
errorBarColor, errorBarColor, errorBarColor, gradientVisible, lineColor, lineColor, lineColor, lineStyle, linesVisible, pointColor, pointColor, pointColor, pointColorByY, pointColorByY, pointLabel, pointLabelFormat, pointShape, pointShape, pointSize, pointSize, pointSize, pointSize, pointsVisible, seriesColor, seriesColor, seriesColor, toolTipPattern, xToolTipPattern, yToolTipPattern
Methods inherited from interface com.illumon.iris.db.plot.datasets.DataSeriesInternal
axes, chart, getErrorBarColor, getGradientVisible, getLineColor, getLineStyle, getLinesVisible, getPlotInfo, getPointLabelFormat, getPointsVisible, getSeriesColor, getXToolTipPattern, getYToolTipPattern, id, name, size
Methods inherited from interface com.illumon.iris.db.plot.datasets.xy.XYDataSeries
pointColor, pointColor, pointColor, pointColor, pointColor, pointColor, pointColor, pointColorInteger, pointLabel, pointLabel, pointLabel, pointLabel, pointShape, pointShape, pointShape, pointShape, pointShape, pointSize, pointSize, pointSize, pointSize, pointSize, pointSize, pointSize
Methods inherited from interface com.illumon.iris.db.plot.datasets.xy.XYDataSeriesInternal
drawXError, drawYError, getEndX, getEndY, getPointColor, getPointLabel, getPointShape, getPointSize, getStartX, getStartY, getX, getXRange, getY, getYRange, sort
-
Method Details
-
-
getOpen
double getOpen(int i)
Gets the open value at index i
.
- Parameters:
i
- index
- Returns:
- open value at given index
-
getHigh
double getHigh(int i)
Gets the high value at index i
.
- Parameters:
i
- index
- Returns:
- high value at given index
-
getLow
double getLow(int i)
Gets the low value at index i
.
- Parameters:
i
- index
- Returns:
- low value at given index
-
getClose
double getClose(int i)
Gets the close value at index i
.
- Parameters:
i
- index
- Returns:
- close value at given index
-