将单元格范围显示为数据标签
Contents
[
Hide
]
在MS Excel中将单元格范围显示为数据标签
在Microsoft Excel 2013中,您可以显示单元格范围作为数据标签。您可以通过以下步骤选择此选项
- 选择系列的数据标签, 并右键单击打开弹出菜单。 -单击 格式化数据标签…,它将显示 标签选项。 -选中或取消选中复选框 标签包含 - 来自单元格的值。
复选框显示单元格范围作为数据标签
以下截图突出显示了此选项,供您参考。
使用Aspose.Cells显示单元格范围作为数据标签
Aspose.Cells提供了DataLabels.setShowCellRange()方法,用于选中或取消选中复选框 标签包含 - 来自单元格的值,如上面的截图所示。
显示单元格范围作为数据标签的Java代码
下面的示例代码访问图表系列的数据标签,然后将DataLabels.setShowCellRange()方法设置为true,以选中 标签包含 - 来自单元格的值 选项。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java | |
// The path to the documents directory. | |
String dataDir = Utils.getDataDir(ShowCellRangeAsTheDataLabels.class); | |
// Create workbook from the source Excel file | |
Workbook workbook = new Workbook(dataDir + "sample.xlsx"); | |
// Access the first worksheet | |
Worksheet worksheet = workbook.getWorksheets().get(0); | |
// Access the chart inside the worksheet | |
Chart chart = worksheet.getCharts().get(0); | |
// Check the "Label Contains - Value From Cells" | |
DataLabels dataLabels = chart.getNSeries().get(0).getDataLabels(); | |
dataLabels.setShowCellRange(true); | |
// Save the workbook | |
workbook.save(dataDir + "output.xlsx"); | |