Package io.deephaven.plot.datasets.xy
Interface XYDataSeriesFunctionInternal
- All Superinterfaces:
DataSeries,Serializable,Series,XYDataSeries,XYDataSeriesFunction
- All Known Implementing Classes:
XYDataSeriesFunctionImpl
XYDataSeries based on a function.
Internal XYDataSeriesFunction methods for use inner use.-
Method Summary
Modifier and TypeMethodDescriptionfuncNPointsInternal(int npoints) Sets the number of data points in this dataset if the user did not set funcNPoints.funcRangeInternal(double xmin, double xmax) Sets the data range for this series if the user did not set funcRange.funcRangeInternal(double xmin, double xmax, int npoints) Sets the data range and number of points for this series if the user did not set funcRange.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, yToolTipPatternMethods 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, pointSizeMethods inherited from interface io.deephaven.plot.datasets.xy.XYDataSeriesFunction
funcNPoints, funcRange, funcRange
-
Method Details
-
funcRangeInternal
Sets the data range for this series if the user did not set funcRange.- Parameters:
xmin- range minimumxmax- range maximum- Returns:
- this data series with the new range
-
funcRangeInternal
Sets the data range and number of points for this series if the user did not set funcRange.- Parameters:
xmin- range minimumxmax- range maximumnpoints- number of data points- Returns:
- this data series with the new range
- Throws:
IllegalArgumentException-xminmust not be less thanxmaxxminandxmaxmust be finite. SeeNumeric.isFinite(java.lang.Byte)npointsmust non-negative
-
funcNPointsInternal
Sets the number of data points in this dataset if the user did not set funcNPoints.- Parameters:
npoints- number of points- Returns:
- this data series with the specified number of points.
- Throws:
IllegalArgumentException-npointsmust be non-negative.
-