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
1 answer

Get coordinates of a range using OxyPlot

I would like to read the start and end coordinates from a OxyPlot PlotView graph. The following is a code snippet from the ViewModel. plotModel.MouseDown += (s1, e1) => { if (e1.ChangedButton == OxyMouseButton.Middle) { …
Robin
  • 3
  • 1
0
votes
2 answers

OxyPlot.Wpf integer axis - no MinimumMajorStep property

I am using OxyPlot.Wpf and have a need for an axis that will only show integer major steps. OxyPlot.Wpf.Axis does not have a MinimumMajorStep (which OxyPlot.Axis has). Is there a simple way to achieve the required objective?
0
votes
1 answer

Oxyplot in UWP Xamarin not updating

I can't seem to bind correctly to Oxyplot in Xamarin. I had a read through multiple posts, but couldn't figure out what's wrong with my setup. XAML
christian.stock
  • 181
  • 2
  • 15
0
votes
0 answers

Problems plotting in WindowsForm using oxyplot

I'm trying to learnt how to use Oxyplot with WindowsForm, so I just created a WindorsForm and copy the example in Oxyplot guide(https://readthedocs.org/projects/oxyplot/downloads/pdf/latest/) in page 23. So, this is my code using…
0
votes
1 answer

c# OxyPlot coloring the graph under the curve

Is it possible in OxyPlot to colour the graph under the curve? And if it is then how? Just like this This is my source: PlotView myPlot = new PlotView(); // Create Plotmodel object var myModel = new PlotModel { Title =…
kubas126
  • 45
  • 4
0
votes
1 answer

oxyplot - Y axis on both sides of chart

I am using the oxyplot lib to create timeseries Charts. I am trying to create a plot which has the same y-axis on both sides, it works fine as long as I am not interacting with the plot to zoom or pan, here is my code model.Axes.Add(new…
Markus
  • 693
  • 8
  • 23
0
votes
1 answer

OxyPlot.Axes.DateTimeAxis on x axes shifts the hours instead of starting at data contained in IO.Swagger.Model.DataPoint.X value

I am using Xamarin.Forms for mobile app, the version of OxyPlot.Xamarin.Forms is 1.1.0-unstable0011 with OxyPlot.Core 2.0.0-unstable1013. Here is the data: "points": [ { "x": "10/19/2020 7:00 AM", …
mm2
  • 7
  • 2
0
votes
1 answer

WPF OxyPlot Zooming issue

In order to have the same scale on both axes, X and Y, I used PlotType.Cartesian which ensures that: _model = new PlotModel(); _model.PlotType = PlotType.Cartesian; I also have possibility to zoom in and out charts. In order to control zooming I…
Michał Turczyn
  • 32,028
  • 14
  • 47
  • 69
0
votes
1 answer

How to plot LineSeries using the OxyPlot library on the WPF UI framework

I am trying to plot my data using OxyPlot. I want to plot two lines in my graph but I am not sure how to provide the plot with data. This is how my XAML file looks like:
kristian
  • 27
  • 9
0
votes
1 answer

How do I implement Zoom in oxyPloy WPF?

I want to use a LineSeries graph in WPF using the oxyploy library. I have been using but this does not support a model/PlotModel which I need to use the zoom functionality. What is the best way to implement the zoom in oxyPlot?
0
votes
1 answer

OxyPlot: Customize Tooltip

I use OxyPlot in my work to show some information. And I need to change the default tooltip which you can see after clicking on some point in the graph. Currently, I have the test WPF window with a simple linear series. I've changed the template for…
5ORBEX
  • 81
  • 7
0
votes
1 answer

Points wrapping to start of OxyPlot chart

I have a program which receives a datestamp and a value from an access (.mbd) database and saves them to two lists (dates and dataPoints, respectively). When I use an OxyPlot chart with DateTimeAxis to plot the points, it doubles up on some points…
0
votes
0 answers

OxyPlot - Is there any way to hide data points?

I'm using WPF and OxyPlot and I wanted to hide some points on a series... however this doesn't seem to be possible to my surprise! Am I missing something? I am iterating over a set of points on a series, and I'm concentrating on a specific region of…
bobsyauncle
  • 152
  • 8
0
votes
1 answer

Oxyplot: operations on TrackerFormatString arguments

I am trying to configure the TrackerFormatString in Oxyplot, so that a particular string is shown for specific values. My code looks something like this: private void addSeriesToGraph(KeyValuePair>>,…
Tranbi
  • 11,407
  • 6
  • 16
  • 33
0
votes
2 answers

Oxyplot xamarin forms pinch zoom and panning not working for Linear series

I am trying to implement zoom and panning in oxyplot Linear series but it does not recognise the zoom or panning. I am using IsZoomEnabled = true, IsPanEnabled = true in both the axis. Am I missing anything?