Shows the data of the backing plot in a Textwindow with columns
(boolean useLabels)
| 810 | |
| 811 | /** Shows the data of the backing plot in a Textwindow with columns */ |
| 812 | void showList(boolean useLabels){ |
| 813 | ResultsTable rt = plot.getResultsTable(saveXValues, useLabels); |
| 814 | if (rt==null) return; |
| 815 | rt.show("Plot Values"); |
| 816 | if (autoClose) { |
| 817 | imp.changes=false; |
| 818 | close(); |
| 819 | } |
| 820 | } |
| 821 | |
| 822 | /** Returns the plot values with simple headings (X, Y, Y1 etc, not the labels) as a ResultsTable. |
| 823 | * Use plot.getResultsTableWithLabels for a table with data set labels as column headings */ |
no test coverage detected