Package Controls

Examples of Controls.SpentTable


        }
        //invert arrays for cards
       
        //amount of money spent to different groups in months tab 1
        //add this aount first as a table with data
        SpentTable stNew=new SpentTable()
        JScrollPane jspSpent=new JScrollPane();
        jspSpent.getViewport().add(stNew);
       
       
        jtpAnalisys.addTab("Account review", jspSpent);
        stNew.setData(strGroups, dblMonthSpent, strDates);
        //then as a plot
        JScrollPane jspChart=new JScrollPane(new MultipleChart(strGroups, dblMonthSpent, strDates, "Spent"));
        jtpAnalisys.addTab("Expenses by months", jspChart);
        //jtpAnalisys.setToolTipTextAt(1, "Outcome by months");
        //percent of money spent to different groups in months tab 3
View Full Code Here

TOP

Related Classes of Controls.SpentTable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.