diff --git a/src/studio/ui/chart/Chart.java b/src/studio/ui/chart/Chart.java index 1f3e379d..4f12b89b 100755 --- a/src/studio/ui/chart/Chart.java +++ b/src/studio/ui/chart/Chart.java @@ -301,7 +301,7 @@ private IntervalXYDataset getDateset(int col) { XYSeriesCollection collection = new XYSeriesCollection(); collection.setAutoWidth(true); - XYSeries series = new XYSeries(table.getColumnName(col)); + XYSeries series = new XYSeries(table.getColumnName(col), false, true); for (int row = 0; row < table.getRowCount(); row++) { K.KBase xValue = (K.KBase)table.getValueAt(row, xIndex); K.KBase yValue = (K.KBase)table.getValueAt(row, col);