Java Code Examples for org.jfree.data.general.DatasetUtilities#findZBounds()
The following examples show how to use
org.jfree.data.general.DatasetUtilities#findZBounds() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: XYShapeRenderer.java From openstock with GNU General Public License v3.0 | 5 votes |
/** * Return the range of z-values in the specified dataset. * * @param dataset the dataset (<code>null</code> permitted). * * @return The range (<code>null</code> if the dataset is <code>null</code> * or empty). */ public Range findZBounds(XYZDataset dataset) { if (dataset != null) { return DatasetUtilities.findZBounds(dataset); } else { return null; } }
Example 2
Source File: XYShapeRenderer.java From ccu-historian with GNU General Public License v3.0 | 5 votes |
/** * Return the range of z-values in the specified dataset. * * @param dataset the dataset (<code>null</code> permitted). * * @return The range (<code>null</code> if the dataset is <code>null</code> * or empty). */ public Range findZBounds(XYZDataset dataset) { if (dataset != null) { return DatasetUtilities.findZBounds(dataset); } else { return null; } }
Example 3
Source File: XYShapeRenderer.java From SIMVA-SoS with Apache License 2.0 | 5 votes |
/** * Return the range of z-values in the specified dataset. * * @param dataset the dataset (<code>null</code> permitted). * * @return The range (<code>null</code> if the dataset is <code>null</code> * or empty). */ public Range findZBounds(XYZDataset dataset) { if (dataset != null) { return DatasetUtilities.findZBounds(dataset); } else { return null; } }
Example 4
Source File: XYShapeRenderer.java From ECG-Viewer with GNU General Public License v2.0 | 5 votes |
/** * Return the range of z-values in the specified dataset. * * @param dataset the dataset (<code>null</code> permitted). * * @return The range (<code>null</code> if the dataset is <code>null</code> * or empty). */ public Range findZBounds(XYZDataset dataset) { if (dataset != null) { return DatasetUtilities.findZBounds(dataset); } else { return null; } }
Example 5
Source File: XYShapeRenderer.java From buffer_bci with GNU General Public License v3.0 | 5 votes |
/** * Return the range of z-values in the specified dataset. * * @param dataset the dataset (<code>null</code> permitted). * * @return The range (<code>null</code> if the dataset is <code>null</code> * or empty). */ public Range findZBounds(XYZDataset dataset) { if (dataset != null) { return DatasetUtilities.findZBounds(dataset); } else { return null; } }
Example 6
Source File: XYShapeRenderer.java From buffer_bci with GNU General Public License v3.0 | 5 votes |
/** * Return the range of z-values in the specified dataset. * * @param dataset the dataset (<code>null</code> permitted). * * @return The range (<code>null</code> if the dataset is <code>null</code> * or empty). */ public Range findZBounds(XYZDataset dataset) { if (dataset != null) { return DatasetUtilities.findZBounds(dataset); } else { return null; } }