<%
// Copy this table definition to a file named SampleData.jsp
// so it can be included in the LineChart sample programs
table.addColumn(1, java.lang.Double.class, null);
table.setColumnLabel(1, "Month");
table.addColumn(2, java.lang.Double.class, null);
table.setColumnLabel(2, "Temp");
table.addRow(1);
table.addRow(2);
table.addRow(3);
table.addRow(4);
table.addRow(5);
table.addRow(6);
table.addRow(7);
table.addRow(8);
table.addRow(9);
table.addRow(10);
table.addRow(11);
table.addRow(12);
table.setCell(1, 1, new Double(1));
table.setCell(1, 2, new Double(40.5));
table.setCell(2, 1, new Double(2));
table.setCell(2, 2, new Double(42.2));
table.setCell(3, 1, new Double(3));
table.setCell(3, 2, new Double(49.2));
table.setCell(4, 1, new Double(4));
table.setCell(4, 2, new Double(59.5));
table.setCell(5, 1, new Double(5));
table.setCell(5, 2, new Double(67.4));
table.setCell(6, 1, new Double(6));
table.setCell(6, 2, new Double(74.4));
table.setCell(7, 1, new Double(7));
table.setCell(7, 2, new Double(77.5));
table.setCell(8, 1, new Double(8));
table.setCell(8, 2, new Double(76.5));
table.setCell(9, 1, new Double(9));
table.setCell(9, 2, new Double(70.6));
table.setCell(10, 1, new Double(10));
table.setCell(10, 2, new Double(60.2));
table.setCell(11, 1, new Double(11));
table.setCell(11, 2, new Double(50.0));
table.setCell(12, 1, new Double(12));
table.setCell(12, 2, new Double(41.2));
%>