2012-02-06 41 views
0

link中,它表明通過硬編碼輸入,我們可以生成圖表。現在,我不想設置男孩和女孩的值,我想查詢數據庫,獲取具有ACTIVE狀態的請求總和。我可以這樣做,但我怎樣才能在此處提供的圖表中對此進行建模?CartesianChartModel數據庫值

回答

0

這樣的事情? 您需要自己添加您的db查詢邏輯...

private void createCategoryModel() { 
    categoryModel = new CartesianChartModel(); 

    ChartSeries active_chart = new ChartSeries(); 
    active_chart.setLabel("ACTIVE"); 

    int total = 250; 
    int active = 100; 
    int non_active = total - active; 

    active_chart.set("Bar_Lablel", active); 


    ChartSeries non_active_chart = new ChartSeries(); 
    non_active_chart.setLabel("NON ACTIVE "); 

    non_active_chart.set("Bar_Lablel", non_active); 


    categoryModel.addSeries(active_chart); 
    categoryModel.addSeries(non_active_chart); 
}