Get OxyPlot to work with WPF.

Download Examples:
https://github.com/oxyplot/documentation-examples/tree/master/HelloWorld/WpfApplication1

 

Find the DLL”s used with the WPF sample application and go “Old School”.

ixyplot1

I copied them into a third party DLL and referenced them with browse.

 

ixyplot2

Then I was able to use:

xmlns:oxy=”http://oxyplot.org/wpf”

ixyplot3

or like this fora plot.

<oxy:Plot Title=”Some Title>
<oxy:Plot.Axes>
<oxy:LinearAxis Position=”Bottom” Minimum=”-10″ Maximum=”10″ />
<oxy:LinearAxis Position=”Left” Minimum=”-10″ Maximum=”10″ />
</oxy:Plot.Axes>
</oxy:Plot>

 

ixyplot4

Everything else left errors.

Could not find missing assembly

Share on Facebook

Leave a Reply

Your email address will not be published.