使用 Node.js via C++ 显示单元格范围作为数据标签

复选框显示单元格范围作为数据标签

在Microsoft Excel中显示单元格范围作为数据标签:

  1. 选择系列数据标签,右键单击以打开上下文菜单。
  2. 选择格式数据标签。标签选项会显示。
  3. 选择或清除选项 标签包含 - 来自单元格的值

以下示例代码访问图表系列数据标签并将 DataLabels.getShowCellRange() 属性设置为 true ,以选择 标签包含-来自单元格的值 选项。

const path = require("path");
const AsposeCells = require("aspose.cells.node");

// The path to the documents directory.
const dataDir = path.join(__dirname, "data");
const filePath = path.join(dataDir, "source_show_range.xlsx");

// Create workbook from the source Excel file
const workbook = new AsposeCells.Workbook(filePath);

// Access the first worksheet
const worksheet = workbook.getWorksheets().get(0);

// Access the chart inside the worksheet
const chart = worksheet.getCharts().get(0);

// Check the "Label Contains - Value From Cells"
const dataLabels = chart.getNSeries().get(0).getDataLabels();
dataLabels.setShowCellRange(true);

// Save the workbook
workbook.save(path.join(dataDir, "output_out.xlsx"));