0
私はコードを持っています。私はデータベースのエントリを使用してグラフを作成したい。私はグラフを作成しましたが、グラフにはx軸とy軸の値は表示されません。 plzは私を助けます。私のコードですApacheを使ってExcelでグラフを作成
{
// Drawing drawing = spreadsheet.createDrawingPatriarch();
// ClientAnchor anchor = drawing.createAnchor(0, 0, 0, 0, 8,10,20,25);
// Chart chart = drawing.createChart(anchor);
//ScatterChartData data = chart.getChartDataFactory().createScatterChartData();
//ValueAxis bottomAxis = chart.getChartAxisFactory().createValueAxisAxisPosition.BOTTOM);
//ValueAxis leftAxis = chart.getChartAxisFactory().createValueAxis(AxisPosition.LEFT);
//leftAxis.setCrosses(AxisCrosses.AUTO_ZERO);
//ChartDataSource<String> xs = DataSources.fromStringCellRange(spreadsheet, new CellRangeAddress(2, NUM_OF_ROWS-1, 1, 1));
//ChartDataSource<Number> ys1 = DataSources.fromNumericCellRange(spreadsheet, new CellRangeAddress(2, NUM_OF_ROWS-1, 2, 2));
// ChartDataSource<String> xs1=null;
// ChartDataSource<Number> ys2=null;
//data.fillChart(chart,bottomAxis);
//data.addSerie(xs, ys1);
//data.addSerie(xs1, ys2);
//ScatterChartSerie chartSerie = data.addSerie(xs, ys1);
//chartSerie.getXValues();
//chart.plot(data, bottomAxis, leftAxis);
//FileOutputStream out = new FileOutputStream(newFile("C:\\Users\\ranig\\programs\\data1.xls"));
//workbook.write(out);
//out.close();
//System.out.println("SCLD.xlsx written successfully");
}