Questions tagged [oxyplot]

OxyPlot is an open source, cross-platform .NET plotting library.

OxyPlot is an open source, cross-platform .NET plotting library.

This library was created with the following objectives:

  • should have a 'scientific report' like look
  • should handle large data series
  • should have zoom/pan controls
  • should be possible to export plots to png, pdf and svg

http://oxyplot.org/

552 questions
0
votes
2 answers

Oxyplot with WPF

I am working with and I oxyplot download an example the following link: http://blog.bartdemeyer.be/2013/03/creating-graphs-in-wpf-using-oxyplot/ I added my own data plotting to go, but the incoming points are accumulated and that makes the graph…
user3042410
  • 85
  • 1
  • 2
  • 6
0
votes
2 answers

Error inflating class PlotView

i am trying to use oxyplot on android, and i am getting the error "error inflating class PlotView" i have built and referenced OxyPlot.XamarinAndroid, and the only thing i try to do is add it in the xml like…
Yann
  • 180
  • 3
  • 14
0
votes
1 answer

Update Oxyplot C# WPF on demand

I am experimenting with a robotic arm and fuzzy logic. My goal is to plot the membership function (simple triangle and trapezoid functions) created by the user. The oxy Plot 'object' is located on an expander, which is located on MainWindow. Plot…
atomSmasher
  • 1,465
  • 2
  • 15
  • 37
0
votes
1 answer

How to create simple bar chart in WPF?

So far, I tried Oxyplot and official example from here http://oxyplot.codeplex.com/wikipage?title=BarSeries However I faced several problems: First of all he can't recognize namespace oxy, as a result he can't find any required function, such as…
Rocketq
  • 5,423
  • 23
  • 75
  • 126
0
votes
0 answers

Declaring an instance variable for an OxyPlot graphing object

I am using OxyPlot, a graphing library for C#. What confuses me so far is the type for some of the constructors. A code snippet is below: public static PlotModel Notinterpolatedvalues() { var plotModel1 = new PlotModel(); …
theGreenCabbage
  • 5,197
  • 19
  • 79
  • 169
0
votes
1 answer

Location and Size are not responding on an OxyPlot Object in C#

I seem to have an issue fixing the location and size of the Plot. is this normal or al i missing something? My code goes like this: GPlot.Model = new PlotModel(); GPlot.Dock = DockStyle.Fill; GPlot.Enabled = true; GPlot.Parent =…
Yann
  • 180
  • 3
  • 14
0
votes
1 answer

How can I update a canvas on the UI without blocking the UI thread?

I am using an open source graphing library, oxyplot, in a c# wpf application. I am running into an issue where the UI thread is blocked when updating the graphs canvas object. Due to the canvas object belonging to the UI thread the update is done on…
William Moore
  • 246
  • 2
  • 16
0
votes
2 answers

Zooming and scrolling in Oxyplots

I have a question about zooming and scrolling. My scroll function doesn't work perfectly, but close enough. Instead of the Maximum value I want to change the ActualMaximum, but that one was protected. plotBSITotalA.Model.Axes[0].Maximum =…
E. Verdi
  • 310
  • 2
  • 19
0
votes
1 answer

Object reference not set to an instance of an object with OxyPlot

I'm opening an object with series and a date. I can use all the series but in the last line "_measurement.MeasurementInfo.StartDateAndTime = seriesObject.Date;" I get an error that says "Object reference not set to an instance of an object". I…
E. Verdi
  • 310
  • 2
  • 19
0
votes
1 answer

I cant get any click event on my LineSeries

I've tried to add the following events: MouseDoubleClick TouchEvent MouseDown All of them leads to the same event that should fire a MessagBox (just for debug) but nothing happens. I guess I don't have the right event... but which one is it if I…
Jason94
  • 13,320
  • 37
  • 106
  • 184
0
votes
0 answers

Another "Object does not contain a definition for X"

I saw a lot of topics with the problem: "Object does not contain a definition for X and no extension method X accepting a first argument of type Object" But none of them had the solution to my problem. Situation: I want to save 3 series of…
E. Verdi
  • 310
  • 2
  • 19
0
votes
2 answers

Reinstalling .NET Framework 4.0 leads to app crash with error CLR20r3

I wrote my application in Visual Studio 2012. I use an external reference to OxyPlot library (dll). I've tested my application on some machines with Windows 7 (the same build, Framework 4.0 was installed). The application executed normally, but on a…
funkerkat
  • 15
  • 1
  • 4
0
votes
2 answers

Does OxyPlot work in .NET 3.5?

Is there any release of OxyPlot for .NET 3.5? I couldn't find it in http://oxyplot.codeplex.com/, but maybe there is an old version...
guilhermecgs
  • 2,913
  • 11
  • 39
  • 69
0
votes
1 answer

OxyPlot is not updating title

I am using OxyPlot to show a Chart on a user control under WPF/.net 4.5 and have the following XAML: and in my Code-Behind: public string ChartTitle { get {…
Christoph Fink
  • 22,727
  • 9
  • 68
  • 113
0
votes
1 answer

How to show more than one plot per form using OxyPlot (VB.Net)

I have been experimenting with the VB.Net library, OxyPlot (https://oxyplot.codeplex.com ==> moved to GitHub ==> https://github.com/oxyplot). I'm have been working on reproducing the few plots examples from the example list. While this has been…
goicox
  • 31
  • 1
  • 9
1 2 3
36
37