Hi,
I'm writing a C# code to draw a scatter chart with straight lines and no markers.
Based on E-ICEBLUE's offical example code(run 'Sample Center', and then find 'CreateScatterChart'), I changed just one code as below:
[Original Code]
IChart chart = pres.Slides[0].Shapes.AppendChart(ChartType.ScatterMarkers, rect1, false);
[What I changed]
IChart chart = pres.Slides[0].Shapes.AppendChart(ChartType.ScatterStraightLines, rect1, false);
What I expected was to get a scatter graph without markers, but marker is included in the graph.
I tried to change ChartType.ScatterStraightLines to ChartType.ScatterStraightLinesAndMarkers, but both shows same result.
As the code is based on your example, I think you can reproduce this situation easily.
Thanks in advance for your support.
I work with Spire.Presentation version 4.11.12(free download version), and using Powerpoint 2016 under Windows 10(64-bit).
My development environment is Visual Studio 2019 community, and .NET Framework 4.7.2 using Visual C#.