Get the style of the i-th PlotObject (curve, label, ...) in the sequence they were added (including hidden ones), as String with comma delimiters: Main Color, Secondary Color (or "none"), Line Width [, Symbol shape for XY_DATA] [,hidden] PlotObjects here refers to curves, arrows, labels etc. (not
(int i)
| 1486 | * PlotObjects here refers to curves, arrows, labels etc. |
| 1487 | * (not legend, exes and frame, though implemented as PlotObjects) */ |
| 1488 | public String getPlotObjectStyle(int i) { |
| 1489 | return getPlotObjectStyle(allPlotObjects.get(i)); |
| 1490 | } |
| 1491 | |
| 1492 | String getPlotObjectStyle(PlotObject plotObject) { |
| 1493 | String styleString = Colors.colorToString(plotObject.color) + "," + |
no test coverage detected