FileDocCategorySizeDatePackage
TableChartPopup.javaAPI DocExample571Thu Oct 24 20:14:26 BST 2002None

TableChartPopup

public class TableChartPopup extends JFrame

Fields Summary
Constructors Summary
public TableChartPopup(TableModel tm)

    super("Table Chart");
    setSize(300,200);
    TableChart tc = new TableChart(tm);
    getContentPane().add(tc, BorderLayout.CENTER);

    // Use the next line to turn on tooltips:
    ToolTipManager.sharedInstance().registerComponent(tc);
  
Methods Summary