Gráfico de Burbujas
Escalado del Tamaño del Gráfico de Burbujas
Aspose.Slides para C++ proporciona soporte para el escalado del tamaño del gráfico de burbujas. En Aspose.Slides para **C++ se han agregado las propiedades IChartSeries.BubbleSizeScale y IChartSeriesGroup.BubbleSizeScale. A continuación se presenta un ejemplo de muestra.
For complete examples and data files, please go to https://github.com/aspose-slides/Aspose.Slides-for-C | |
// The path to the documents directory. | |
const String outPath = u"../out/SettingBubbleChartScaling_out.pptx"; | |
//Instantiate Presentation class that represents PPTX file | |
SharedPtr<Presentation> pres = MakeObject<Presentation>(); | |
//Access first slide | |
SharedPtr<ISlide> slide = pres->get_Slides()->idx_get(0); | |
// Add chart with default data | |
SharedPtr<IChart> chart = slide->get_Shapes()->AddChart(Aspose::Slides::Charts::ChartType::Bubble, 0, 0, 500, 500); | |
chart->get_ChartData()->get_SeriesGroups()->idx_get(0)->set_BubbleSizeScale(150); | |
// Write the presentation file to disk | |
pres->Save(outPath, Aspose::Slides::Export::SaveFormat::Pptx); | |
Representar Datos como Tamaños de Gráfico de Burbujas
Se ha agregado un nuevo método get_BubbleSizeRepresentation() a las clases IChartSeries y ChartSeries. BubbleSizeRepresentation especifica cómo se representan los valores del tamaño de las burbujas en el gráfico de burbujas. Los valores posibles son: BubbleSizeRepresentationType.Area y BubbleSizeRepresentationType.Width. En consecuencia, se ha agregado el enum BubbleSizeRepresentationType para especificar las posibles formas de representar datos como tamaños de gráfico de burbujas. A continuación se presenta un código de muestra.
System::SharedPtr<Presentation> pres = System::MakeObject<Presentation>(); | |
System::SharedPtr<IChart> chart = pres->get_Slides()->idx_get(0)->get_Shapes()->AddChart(Aspose::Slides::Charts::ChartType::Bubble, 50.0f, 50.0f, 600.0f, 400.0f, true); | |
chart->get_ChartData()->get_SeriesGroups()->idx_get(0)->set_BubbleSizeRepresentation(Aspose::Slides::Charts::BubbleSizeRepresentationType::Width); | |
pres->Save(u"../out/Presentation.pptx", Aspose::Slides::Export::SaveFormat::Pptx); | |