Scatter Only with Marker

Hi,

I wants to generate Scatter chart with only marker. I am using "ScatterWithMarker" chart type but i am getting lines as well.

Can you please tell me how can i generate scatter chart without lines and only with marker.

I am facing another issue as well when i am generating scatter chart. I am not able to open the "Edit Data" option. When i am clicking on it. Nothing is happening.

I am attaching my output. Can you please check and let me know.

Thanks,

Amit

Hi Amit,

I have used Aspose.Slides for .NET 7.5.1 and have been able to generate scatter chart with Marker by using following sample code.

public static void AddScatterWithMarker()
{
PresentationEx pres = new PresentationEx();

SlideEx slide = pres.Slides[0];

//Creating the default chart
ChartEx chart = slide.Shapes.AddChart(ChartTypeEx.ScatterWithMarkers, 0, 0, 400, 400);
pres.Write("D:\\Aspose Data\\TestScatter.pptx");
}

For your convenience, I have attached the generated presentation. Please share, if I may help you further in this regard.

Many Thanks,