
I am in confusion on StackedBarChart3D issue.
I have to create a barchart with dynamic data that shows some data varied by months.
Data is:
Month Assigned unassigned completed Total
-------------------------------------------------------------
Sep 99 23 8 130
Oct 0 2 2 4
I have the follwing code:
Code: Select all
public Object produceDataset(Map params) {
final String[] categories = [b]Need to display months here?[/b]
final String[] seriesNames = "Unassigned", "GateKeeper", "Assigned", "In Progress", "Completed" };
[b]how to display the chart range here ? like 0 to maximum total in the above table[/b]
}
DefaultIntervalCategoryDataset ds =
new DefaultIntervalCategoryDataset(seriesNames, categories, startValues, endValues);
return ds;
}
I have to display a chart status with months showing some numbers? Pls help me on this issue
