Package io.deephaven.plot.datasets.xy
Interface XYDataSeriesInternal
- All Superinterfaces:
DataSeries
,DataSeriesInternal
,PlotExceptionCause
,Serializable
,Series
,SeriesInternal
,XYDataSeries
- All Known Subinterfaces:
IntervalXYDataSeriesInternal
,OHLCDataSeriesInternal
,XYErrorBarDataSeriesInternal
- All Known Implementing Classes:
AbstractXYDataSeries
,IntervalXYDataSeriesArray
,OHLCDataSeriesArray
,OHLCDataSeriesSwappableTableArray
,OHLCDataSeriesTableArray
,XYDataSeriesArray
,XYDataSeriesFunctionImpl
,XYDataSeriesSwappableTableArray
,XYDataSeriesTableArray
,XYErrorBarDataSeriesArray
,XYErrorBarDataSeriesSwappableTableArray
,XYErrorBarDataSeriesTableArray
DataSeriesInternal
with two numerical components, x and y. Data points are numbered and are accessed with an
index.-
Method Summary
Modifier and TypeMethodDescriptionCreate a copy of the series on a different set of axes.default boolean
default boolean
default double
getEndX
(int i) default double
getEndY
(int i) Gets the default color for data points.getPointColor
(int i) Gets the color of the data point at indexi
.Gets the default label for data points.getPointLabel
(int i) Gets the label of the data point at indexi
.Gets the default shape for data points.getPointShape
(int i) Gets the shape of the data point at indexi
.Gets the default size for data points.getPointSize
(int i) Gets the size of the data point at indexi
.default double
getStartX
(int i) default double
getStartY
(int i) double
getX
(int i) Gets the x value of the data point at indexi
.double
getY
(int i) Gets the y value of the data point at indexi
.Methods inherited from interface io.deephaven.plot.datasets.DataSeries
errorBarColor, errorBarColor, errorBarColor, gradientVisible, lineColor, lineColor, lineColor, lineStyle, linesVisible, pointColor, pointColor, pointColor, pointLabel, pointLabelFormat, pointShape, pointShape, pointSize, pointSize, pointSize, pointSize, pointsVisible, seriesColor, seriesColor, seriesColor, toolTipPattern, xToolTipPattern, yToolTipPattern
Methods inherited from interface io.deephaven.plot.datasets.DataSeriesInternal
axes, chart, getErrorBarColor, getGradientVisible, getLineColor, getLineStyle, getLinesVisible, getPlotInfo, getPointLabelFormat, getPointsVisible, getSeriesColor, getXToolTipPattern, getYToolTipPattern, id, name, size
Methods inherited from interface io.deephaven.plot.SeriesInternal
addPartitionedTableHandle, addSwappableTable, addTableHandle, getPartitionedTableHandles, getSwappableTables, getTableHandles, removeTableHandle
Methods inherited from interface io.deephaven.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
-
Method Details
-
copy
Description copied from interface:SeriesInternal
Create a copy of the series on a different set of axes.- Specified by:
copy
in interfaceDataSeriesInternal
- Specified by:
copy
in interfaceSeriesInternal
- Parameters:
axes
- new axes.- Returns:
- copy of the series on a different set of axes.
-
getX
double getX(int i) Gets the x value of the data point at indexi
.- Parameters:
i
- index- Returns:
- x value of this data point at index
i
-
getY
double getY(int i) Gets the y value of the data point at indexi
.- Parameters:
i
- index- Returns:
- x value of this data point at index
i
-
getPointSize
Double getPointSize()Gets the default size for data points.- Returns:
- default size for data points
-
getPointSize
Gets the size of the data point at indexi
.- Parameters:
i
- index- Returns:
- size of this data point at index
i
-
getPointColor
Paint getPointColor()Gets the default color for data points.- Returns:
- default color for data points.
-
getPointColor
Gets the color of the data point at indexi
.- Parameters:
i
- index- Returns:
- color of this data point at index
i
-
getPointLabel
String getPointLabel()Gets the default label for data points.- Returns:
- default label for data points.
-
getPointLabel
Gets the label of the data point at indexi
.- Parameters:
i
- index- Returns:
- label of this data point at index
i
-
getPointShape
Shape getPointShape()Gets the default shape for data points.- Returns:
- default shape for data points.
-
getPointShape
Gets the shape of the data point at indexi
.- Parameters:
i
- index- Returns:
- shape of this data point at index
i
-
getStartX
default double getStartX(int i) -
getEndX
default double getEndX(int i) -
getStartY
default double getStartY(int i) -
getEndY
default double getEndY(int i) -
drawXError
default boolean drawXError() -
drawYError
default boolean drawYError()
-