创建成交量高低收(VHLC)股票图表

可能的使用场景

我们将讨论的第三种股票图表是成交量高低收图。再次重申,必须确保数据顺序正确。如果需要重新排列数据表,应在设置图表之前进行。 此图表包括一个立即在第一个(类别)列之后的成交量列,并且图表在主轴上显示此成交量的柱形图,而价格则移至次要轴。

todo:image_alt_text

成交量高低收(VHLC)股票图表

todo:image_alt_text

示例代码

以下示例代码加载了 样本Excel文件 并生成了 输出Excel文件

// Create an instance of Workbook
Workbook workbook = new Workbook("Volume-High-Low-Close.xlsx");
// Access the first worksheet.
Worksheet worksheet = workbook.getWorksheets().get(0);
//Create High-Low-Close-Stock Chart
int pieIdx = worksheet.getCharts().add(ChartType.STOCK_VOLUME_HIGH_LOW_CLOSE, 5, 6, 20, 12);
// Retrieve the Chart object
Chart chart = worksheet.getCharts().get(pieIdx);
// Set the legend can be showed
chart.setShowLegend(true);
// Set the chart title name
chart.getTitle().setText("Volume-High-Low-Close Stock");
// Set the Legend at the bottom of the chart area
chart.getLegend().setPosition(LegendPositionType.BOTTOM);
// Set data range
chart.setChartDataRange("A1:E9", true);
// Set category data
chart.getNSeries().setCategoryData("A2:A9");
// Set Color for the first series(Volume) data
chart.getNSeries().get(0).getArea().setForegroundColor(Color.fromArgb(79, 129,189));
// Fill the PlotArea area with nothing
chart.getPlotArea().getArea().getFillFormat().setFillType(FillType.NONE);
// Save the Excel file
workbook.save("out.xlsx");