Skip to content

Scatter

Add chart method present in slide component or you can replace the chart using shape component.

// Bare minimum
powerPoint.AddSlide(PresentationConstants.SlideLayoutType.BLANK)
.AddChart(CreateDataCellPayload(), new G.ScatterChartSetting<G.PresentationSetting>());
// Some additional samples
powerPoint.AddSlide(PresentationConstants.SlideLayoutType.BLANK)
.AddChart(CreateDataCellPayload(), new G.ScatterChartSetting<G.PresentationSetting>()
{
scatterChartTypes = G.ScatterChartTypes.BUBBLE
});

ScatterChartSetting<G.PresentationSetting> Options

Section titled “ScatterChartSetting<G.PresentationSetting> Options”

Contains options details extended from ChartSetting that are specific to scatter chart.

PropertyTypeDetails
scatterChartDataLabelScatterChartDataLabelGeneral Data label option applied for all series
scatterChartSeriesSettingsList<ScatterChartSeriesSetting?>Data Series specific options are used from the list. The position on the list is matched with the data series position. you can use null to skip a series
scatterChartTypesScatterChartTypesType of chart
chartAxesOptionsChartAxesOptionsChart axes options

Contains options details extended from ChartDataLabel that are specific to scatter chart.

PropertyTypeDetails
dataLabelPositionDataLabelPositionValuesData Label placement options.

Contains options details extended from ChartSeriesSetting that are specific to scatter chart.

PropertyTypeDetails
ScatterChartDataLabelScatterChartDataLabelData Label Option specific to one series