Excel 2016 Grafiklerini Okuyun ve İşleyin
Contents
[
Hide
]
Olası Kullanım Senaryoları
Aspose.Cells, Microsoft Excel 2013 veya önceki sürümlerde bulunmayan Microsoft Excel 2016 grafiklerinin okunmasını ve değiştirilmesini artık desteklemektedir.
Excel 2016 Grafiklerini Okuyun ve İşleyin
Aşağıdaki örnek kod,kaynak excel dosyasıilk çalışma sayfasında Excel 2016 grafiklerini içeren. Tüm çizelgeleri tek tek okur ve grafiğin türüne göre başlığını değiştirir. Aşağıdaki ekran görüntüsü, kodun yürütülmesinden önce kaynak excel dosyasını gösterir. Gördüğünüz gibi, grafik başlığı tüm grafikler için aynıdır.
Aşağıdaki ekran görüntüsüçıktı excel dosyası kodun yürütülmesinden sonra. Gördüğünüz gibi grafik başlığı, grafik türüne göre değiştirilir.
Basit kod
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); | |
// Load source excel file containing excel 2016 charts | |
Workbook book = new Workbook(dataDir + "excel2016Charts.xlsx"); | |
// Access the first worksheet which contains the charts | |
Worksheet sheet = book.Worksheets[0]; | |
// Access all charts one by one and read their types | |
for (int i = 0; i < sheet.Charts.Count; i++) | |
{ | |
// Access the chart | |
Chart ch = sheet.Charts[i]; | |
// Print chart type | |
Console.WriteLine(ch.Type); | |
// Change the title of the charts as per their types | |
ch.Title.Text = "Chart Type is " + ch.Type.ToString(); | |
} | |
// Save the workbook | |
book.Save(dataDir + "out_excel2016Charts.xlsx"); |
Konsol Çıkışı
Sağlanan ile çalıştırıldığında yukarıdaki örnek kodun konsol çıktısı aşağıdadır.kaynak excel dosyası.
Waterfall
Treemap
Sunburst
Histogram
BoxWhisker