Scatter

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

Basic Code Sample

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

ScatterChartSetting Options

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

ScatterChartDataLabel Options

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

ScatterChartSeriesSetting Options

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

Last updated