ZedGraph: just the dots
Asked Answered
D

2

9

I am new to ZedGraph. So far I could draw curves and bars. How can I display just the dots without connecting them?

I am using C# and Windows Forms.

Dorina answered 12/7, 2009 at 10:1 Comment(0)
F
12

The Scatter Plot Demo from ZedGraph's site shows how to do it. There is an IsVisible property on the Line which you set to false to only show the points.

LineItem myCurve = myPane.AddCurve("Title", list, Color.Black, SymbolType.Diamond);
myCurve.Line.IsVisible = false;
Fates answered 12/7, 2009 at 12:19 Comment(0)
R
2

I think your solution is on The Code Project. Have a look at the part where he talks about "The Fill class". There is a dot-only example.

Retread answered 12/7, 2009 at 10:20 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.