FileDocCategorySizeDatePackage
TableChartPopup.javaAPI DocExample459Mon Nov 09 12:45:50 GMT 1998None

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);

    // Turn on the tooltips, we can use any string to get going.
    tc.setToolTipText("Demo Chart");
  
Methods Summary