24 lines
412 B
Java
24 lines
412 B
Java
![]() |
/*
|
||
|
* 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);
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
}
|