在图表中,数据是非行在运行时的动态。 我的问题是:
- If data set is large chart get shrink ed, it s not clearly visible .
如果数据组的数据数量较少(没有记录套),那么图表的宽度就很大。 我如何控制它?
chartPanel = new ChartPanel(test()); jPanel1.add(chartPanel, BorderLayout.CENTER); public static JFreeChart test() { String query = "SELECT num1,num2 from test1 ; JFreeChart cha; try { JDBCCategoryDataset dataset = new JDBCCategoryDataset("jdbc:mysql://localhost:3306/db", "com.mysql.jdbc.Driver", "root", ""); dataset.executeQuery(query); cha = ChartFactory.createBarChart3D("xxxx", "xxx", "xxx", dataset, PlotOrientation.VERTICAL, true, true, false); } catch (Exception e) { System.out.println(e); } return cha; }
是否有办法调整《Barchart》中的酒吧。