You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

GuiChart.java 420B

1234567891011121314151617181920212223
  1. /*
  2. * To change this license header, choose License Headers in Project Properties.
  3. * To change this template file, choose Tools | Templates
  4. * and open the template in the editor.
  5. */
  6. package graph;
  7. import org.jfree.chart.ChartPanel;
  8. /**
  9. *
  10. * @author christophal67389
  11. */
  12. public class GuiChart extends ChartPanel
  13. {
  14. public GuiChart()
  15. {
  16. super(null);
  17. }
  18. ///Test2
  19. }