ZedGraph: просто точки

Кто-то указал на меня на args4j в последнее время, который является базирующейся аннотацией. Мне действительно нравится он!

9
задан Peter Mortensen 20 June 2014 в 14:06
поделиться

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.

2
ответ дан 4 December 2019 в 14:30
поделиться

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;
12
ответ дан 4 December 2019 в 14:30
поделиться
Другие вопросы по тегам:

Похожие вопросы: