Hi! I am new to ZedGraph, so far I could draw curves and bars but couldn't figure out how can I display just the dots without connecting them. Can you help me? (Context: C#, WinForms)
+1
A:
I think your solution is on CodeProject: http://www.codeproject.com/KB/graphics/zedgraph.aspx
Have a look at the part where he talks about "The Fill class", there is a dot only example.
Zyphrax
2009-07-12 10:20:21
+2
A:
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;
adrianbanks
2009-07-12 12:19:49