test/src/graph/GuiChart.java

24 lines
412 B
Java
Raw Normal View History

2019-06-04 12:58:48 +02:00
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package graph;
import org.jfree.chart.ChartPanel;
/**
*
* @author christophal67389
*/
public class GuiChart extends ChartPanel
{
public GuiChart()
{
super(null);
}
}