Hur man skapar cirkeldiagram i Excel-fil med C++

I det här exemplet kommer vi att förstå hur man skapar cirkeldiagram i filen Excel med C++. Du kan infoga cirkeldiagram i Excel-kalkylblad på Microsoft Windows, Linux, etc. programmatiskt i C++.

Steg för att skapa cirkeldiagram i Excel-fil med C++

  1. Konfigurera paketet Aspose.Cells.Cpp med NuGet Package Manager
  2. Lägg till referens till namnområdet Aspose::Cells
  3. Initiera klassobjektet Workbook för att skapa en ny Excel-fil
  4. Lägg till exempelvärden till cellerna
  5. Lägg till seriesamling och ställ in kategoridata
  6. Formatera dataetiketterna med hjälp av IDataLabels-gränssnittet
  7. Spara den utgående Excel-filen efter att ha infogat ett cirkeldiagram i C++

I exemplet nedan får du lära dig hur du infogar cirkeldiagram i Excel med C++. Initiera en tom arbetsbok och gör cirkeldiagram i Excel-fil med C++ helt enkelt genom att använda några API-anrop.

Kod för att infoga cirkeldiagram i Excel med C++

#pragma once
#include "Aspose.Cells.h"
class ExcelPieChart
{
void CreateExcelPieChart()
{
// Set the license for Aspose.Cells API for creating pie chart
intrusive_ptr<License> CellChartLicense = new License();
CellChartLicense->SetLicense(new String("Aspose.Total.lic"));
// Instantiate the Workbook object to load Excel file for inserting pie chart
intrusive_ptr<IWorkbook> ChartWorkbook = Factory::CreateIWorkbook();
//Accessing a worksheet using its index
intrusive_ptr<IWorksheet> ChartWorksheet = ChartWorkbook->GetIWorksheets()->GetObjectByIndex(0);
// Adding sample values to cells
ChartWorksheet->GetICells()->GetObjectByIndex(new String("A1"))->PutValue("Quarters");
ChartWorksheet->GetICells()->GetObjectByIndex(new String("A2"))->PutValue("1st_Qtr");
ChartWorksheet->GetICells()->GetObjectByIndex(new String("A3"))->PutValue("2nd_Qtr");
ChartWorksheet->GetICells()->GetObjectByIndex(new String("A4"))->PutValue("3rd_Qtr");
ChartWorksheet->GetICells()->GetObjectByIndex(new String("A5"))->PutValue("4th_Qtr");
ChartWorksheet->GetICells()->GetObjectByIndex(new String("B1"))->PutValue("Sales");
ChartWorksheet->GetICells()->GetObjectByIndex(new String("B2"))->PutValue("6.3");
ChartWorksheet->GetICells()->GetObjectByIndex(new String("B3"))->PutValue("3.1");
ChartWorksheet->GetICells()->GetObjectByIndex(new String("B4"))->PutValue("2.2");
ChartWorksheet->GetICells()->GetObjectByIndex(new String("B5"))->PutValue("1.9");
// Adding a Pie chart to the worksheet in the workbook
int chartIndex = ChartWorksheet->GetICharts()->Add(ChartType::ChartType_Pie, 10, 2, 34, 13);
// Accessing the instance of the newly created Pie chart
intrusive_ptr<Aspose::Cells::Charts::IChart> PieChart = ChartWorksheet->GetICharts()->GetObjectByIndex(chartIndex);
// Adding SeriesCollection to the chart from "A2" to "B5"
PieChart->GetNISeries()->Add(new String("A2:B5"), true);
PieChart->GetNISeries()->SetCategoryData(new String("A2:A5"));
PieChart->GetITitle()->SetText(new String("Sales By Quarter"));
PieChart->GetITitle()->GetIFont()->SetColor(Systems::Drawing::Color::GetBlue());
PieChart->GetITitle()->GetIFont()->SetBold(true);
PieChart->GetITitle()->GetIFont()->SetSize(11);
// Format the datalebels of all series
for (int i = 0; i < PieChart->GetNISeries()->GetCount(); i++)
{
intrusive_ptr<IDataLabels> dataLabels = PieChart->GetNISeries()->GetObjectByIndex(i)->GetIDataLabels();
dataLabels->SetShowValue(true);
dataLabels->SetShowPercentage(true);
}
// Save the output Excel file with newly created pie chart
ChartWorkbook->Save(new String ("output.xlsx"));
}
};

Du kan lägga till cirkeldiagram i Excel-fil med C++ genom att infoga diagramvärdena och formatera dataetiketterna programmatiskt. Du kan enkelt skapa cirkeldiagrammet utan att behöva installera MS Excel eller något annat verktyg. I tidigare exempel utforskade vi Hur man tar bort formel från Excel-fil i C++ som innehåller exemplet för att ta bort formel från Excel-fil.

 Svenska