C++ ile Sparkline Ekle
Contents
[
Hide
]
Bir kıvılcım ekleyin
Sparklines, hücrede küçük grafikler olup, verilerin görsel temsilidir. Trendleri göstermek, en yüksek ve en düşük değerleri vurgulamak veya sezonluk artış ve azalmaları göstermek için kullanılır. En fazla etki için sparklines’ı veriye yakın konumlandırın. Üç tür sparklines mevcuttur: Çizgi, Sütun ve Yığılı.
Aspose.Cells ile bir kıvılcım oluşturmak basittir, aşağıdaki örnek kodları ile:
#include <iostream>
#include "Aspose.Cells.h"
using namespace Aspose::Cells;
int main()
{
Aspose::Cells::Startup();
// Source directory path
U16String srcDir(u"..\\Data\\01_SourceDirectory\\");
// Output directory path
U16String outDir(u"..\\Data\\02_OutputDirectory\\");
// Create a new workbook
Workbook book;
Worksheet sheet = book.GetWorksheets().Get(0);
// Set values in cells
sheet.GetCells().Get(u"A1").PutValue(5);
sheet.GetCells().Get(u"B1").PutValue(2);
sheet.GetCells().Get(u"C1").PutValue(1);
sheet.GetCells().Get(u"D1").PutValue(3);
// Define the CellArea
CellArea ca;
ca.StartColumn = 4;
ca.EndColumn = 4;
ca.StartRow = 0;
ca.EndRow = 0;
// Add a sparkline group
int idx = sheet.GetSparklineGroups().Add(SparklineType::Line, sheet.GetName() + u"!A1:D1", false, ca);
// Get the sparkline group
SparklineGroup group = sheet.GetSparklineGroups().Get(idx);
group.GetSparklines().Add(sheet.GetName() + u"!A1:D1", 0, 4);
// Customize Sparklines
// Create CellsColor
CellsColor clr = book.CreateCellsColor();
clr.SetColor(Color::Orange());
group.SetSeriesColor(clr);
// Set the high points to green and low points to red
group.SetShowHighPoint(true);
group.SetShowLowPoint(true);
group.GetHighPointColor().SetColor(Color::Green());
group.GetLowPointColor().SetColor(Color::Red());
// Set line weight
group.SetLineWeight(1.0);
// Optionally, apply a preset style
// group.SetPresetStyle(SparklinePresetStyleType::Style10);
// Save the workbook
book.Save(outDir + u"output.xlsx");
Aspose::Cells::Cleanup();
}