Gets an array with human-readable designations of the PlotObjects containing xy data in the sequence they were added. Other Plot Objects such as labels, arrows, lines, shapes and hidden PlotObjects are not counted. (the object passed with the constructor is first, even though it is plotted last).
()
| 1398 | * shapes and hidden PlotObjects are not counted. |
| 1399 | * (the object passed with the constructor is first, even though it is plotted last). */ |
| 1400 | public String[] getDataObjectDesignations() { |
| 1401 | return getPlotObjectDesignations(PlotObject.XY_DATA, false); |
| 1402 | } |
| 1403 | |
| 1404 | /** Returns the number of PlotObjects (curves, labels, ...) passed with the constructor or added by 'add' or 'draw' methods. |
| 1405 | * Legend, frame and axes (though internally PlotObjects) are not included */ |
no test coverage detected