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
6
votes
3 answers

Auto-scoll/pan in OxyPlot real-time data series plotting

I am using OxyPlot in a C# winforms app. My axese are LinearAxis type. I am trying to plot some real-time data which i have managed to do by adding points to my series and refreshing the plot as data becomes available. However, I am having trouble…
rex
  • 3,133
  • 6
  • 35
  • 62
5
votes
1 answer

OxyPlot AreaSeries Behind GridLines

I have used an AreaSeries to show a colored area on a graph. The colored area is rendered on top of the grid lines. Is there any way to bring the grid lines to the front? This plot is defined in XAML in a WPF project. This is the configuration: …
Phil Jollans
  • 3,605
  • 2
  • 37
  • 50
5
votes
1 answer

Assigning two y-axes to two lineseries in oxyplot (C# WPF)

I've searched low and high for an answer to this question, but I only find older answers related to Windows Forms and not WPF. Nothing is mentioned in the documentation. I have two lineseries that I plot using oxyplot. However, I am not able to…
Henrik_er
  • 87
  • 1
  • 9
5
votes
2 answers

How to change the stringformat of Oxyplot track value?

If I change the stringformat of axis, it works for the axis (see the black circle of the picture). But how can I change the stringformat of the track value (the red circle)?
Felix
  • 2,673
  • 3
  • 30
  • 38
5
votes
1 answer

What's different between PlotView and Plot?

I've seen two chart usages, PlotView and Plot. If I use PlotView, I can use Model="{Binding MyModel}" only, I can't set other binding like source. I can't implement MVVM. But if I use Plot, I can do any binding, and many sub-control setting in xaml…
Po-Sen Huang
  • 445
  • 6
  • 24
5
votes
1 answer

Binding OxyPlot via MVVMCross in Xamarin.Android

I have added OxyPlot Android and Core in my Xamarin PCL based project where I am using MVVMCross. I have added the plotview in my xml as follows. But I do not know how to bind this view using MVVMCross. Is there any good example or resources to…
casillas
  • 16,351
  • 19
  • 115
  • 215
5
votes
1 answer

WPF and Oxyplot: graph with CategoryAxis and LogarithmicAxis

I am currently playing with Oxyplot and the demo samples (that one can download there https://github.com/oxyplot/oxyplot/archive/develop.zip), more particulary the sample 'ColumnSeriesDemo'. Here is what it loks like when executed: Code: public…
Louitbol
  • 170
  • 1
  • 16
5
votes
1 answer

Oxyplot C# DateTimeAxis show point data in graph

if i create a DateTimeAxis with c# like this: DateTimeAxis xAxis = new DateTimeAxis { Position = AxisPosition.Bottom, StringFormat = "dd/MM/yyyy", Title = "Year", MinorIntervalType =…
binaryBigInt
  • 1,526
  • 2
  • 18
  • 44
5
votes
1 answer

Is it possible to create isosurfaces using Oxyplot?

I'm using Oxyplot HeatMapSeries for representing some graphical data. For a new application I need to represent the data with isosurfaces, something looking like this: Some ideas around this: I know the ContourSeries can do the isolines, but I…
gutisg
  • 73
  • 5
5
votes
0 answers

OxyPlot. How to set DateTimeAxis range?

I'm using OxyPlot to plot the amount of something in a certain range of time. The possibilities for the 3 different time ranges I'm using are: One day, two days to 31 days, and 1 year to 4 years. For one day the plot always have to show 0 to…
midi
  • 3,128
  • 5
  • 30
  • 47
5
votes
1 answer

How can I change default x-axis title in oxyplot?

I use oxyplot framework in wpf with MVVM pattern. And I want to change x-axis title, but I can not find any axis object. Axes property in PlotModel is empty. I find DefaultXaxis Property, and also it is null. How can I change default axis title…
Doctor
  • 788
  • 9
  • 12
5
votes
3 answers

OxyPlot get clicked point

I am trying to plot some circles on a scatter plot via:
Matt
  • 619
  • 3
  • 8
  • 23
5
votes
1 answer

Irregular interval on DateTime Axis in OxyPlot

I have a WPF application in which I am using OxyPlot for charting. I add points continuously to the lineseries in the chart. The X-Axis is a DateTime axis whose interval type is set to seconds. Points are added continuously to the line series. When…
Abhishek
  • 2,925
  • 4
  • 34
  • 59
5
votes
2 answers

Multiple Plots with shared axes in Oxyplot

I want to add multiple plots with shared x-axis using OXYPLOT library. The example code is as follows and it sets 4 different y-axis sharing the same x-axis. However i can only plot data on the 1st x&y axis but not the others. Any kind of suggestion…
Muzab
  • 133
  • 1
  • 10
4
votes
2 answers

Bindable annotations in OxyPlot chart

I'm trying to use OxyPlot to visualize a time series and I'm using annontations to mark some points in time and value levels like minimum/maximum value and so on. I want to achieve this in WPF with bindings and, so far, I started with the Plot…
Chris Tophski
  • 930
  • 1
  • 6
  • 23
1
2
3
36 37