Here is the xaml code to my graph:
From the linked discussion:
This should be covered by the
Marker*
properties in theLineSeries
See examples in the Example browser.
It looks like you have to set MarkerFill
and MarkerType
. To show only markers (and no line), set the Color
to Transparent
.
<oxy:LineSeries ItemsSource="{Binding MyDataPoints}"
Color="Transparent"
MarkerFill="SteelBlue"
MarkerType="Circle" />
Answered on the Oxyplot forums for those who find this.
https://oxyplot.codeplex.com/discussions/528893