Mostrare l intervallo di celle come etichette dati
Contents
[
Hide
]
In Microsoft Excel 2013, puoi visualizzare un intervallo di celle per le etichette dati. Aspose.Cells supporta questa funzionalità.
Casella di controllo per mostrare l’intervallo di celle come etichette dati
Per mostrare l’intervallo di celle come etichette dati in Microsoft Excel:
- Seleziona le etichette dati della serie e fai clic con il tasto destro per aprire il menu contestuale.
- Seleziona Formatta etichette dati. Le opzioni di etichettatura vengono visualizzate.
- Seleziona o deseleziona l’opzione L’etichetta contiene - Valore dalle celle.
Il codice di esempio qui sotto accede alle etichette dati di una serie del grafico e imposta la proprietà DataLabels.ShowCellRange su true per selezionare l’opzione L’etichetta contiene - Valore dalle celle.
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-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Create workbook from the source Excel file | |
Workbook workbook = new Workbook(dataDir + "source.xlsx"); | |
// Access the first worksheet | |
Worksheet worksheet = workbook.Worksheets[0]; | |
// Access the chart inside the worksheet | |
Chart chart = worksheet.Charts[0]; | |
// Check the "Label Contains - Value From Cells" | |
DataLabels dataLabels = chart.NSeries[0].DataLabels; | |
dataLabels.ShowCellRange = true; | |
// Save the workbook | |
workbook.Save(dataDir + "output_out.xlsx"); |