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
23
votes
7 answers

How to refresh oxyplot plot when data changes

Oxyplot graphs 13 points which are derived from the 6 user input text boxes. The values in the text boxes are held in public variables in the MainWindow.xaml.cs class. The variables are updated when the user presses enter in the text box. How would…
Jkallus
  • 431
  • 1
  • 4
  • 16
14
votes
2 answers

Server-side rendering of WPF UserControl

I am writing a server side console app in C#/.Net 4.5 that gets some data and creates static chart images that are saved to be displayed by a web server. I am mostly using the method described…
Rune Jacobsen
  • 9,907
  • 11
  • 58
  • 75
13
votes
3 answers

How to plot MULTIPLE LineSeries on an OxyPlot chart?

I apologize for asking so many OxyPlot questions, but I seem to be really struggling with using the OxyPlot chart control. My project is in WPF format so I was originally using a hosted WINFORMS chart and that worked like a charm and did absolutely…
Hooplator15
  • 1,540
  • 7
  • 31
  • 58
11
votes
3 answers

Override OxyPlot default color palette

I've been making use of OxyPlot lately, and was wondering if there is a way of overriding the default Color Palette of PlotSeries / PlotModel? I know i can set the color individually for each series, but it would be nice to have an array of color…
stoic
  • 4,700
  • 13
  • 58
  • 88
10
votes
3 answers

C# - OxyPlot how to add plot to windows form

Trying out OxyPlot, installed and referenced packages. Copying and pasting the example from here http://docs.oxyplot.org/en/latest/getting-started/hello-windows-forms.html but it doesn't recognize plot1 from the last line. I am guessing because…
user3646105
  • 2,459
  • 4
  • 14
  • 18
9
votes
1 answer

How do I create and plot a ContourSeries with Oxyplot?

I have a WPF application where I need to visualize y = y(x1, x2) where x1, x2 are linear coordinates. I can do this using the HeatMapSeries in Oxyplot, but when I want to plot two sets of data in the same window, heatmaps are not the proper tool. A…
Mats Isaksson
  • 1,939
  • 2
  • 14
  • 18
9
votes
2 answers

Multiple LineSeries Binding in OxyPlot

Is it possible to bind a plot to a collection of LineSeries instead of a single LineSeries in OxyPlot? (and not through the Model). I'm looking for something like this:
Sturm
  • 3,968
  • 10
  • 48
  • 78
8
votes
2 answers

how to draw horizontal and vertical lines in interval bar chart - oxyplot - WPF

Good afternoon, right now i have this chart but i want to add the red and blue lines for in the bar chart. im pretty new withwith oxyplot. Thanks for your help. I am currently working with the event display in the relays saved as booleans. So it…
Hugo Gonzalez
  • 189
  • 1
  • 11
7
votes
3 answers

How to create square plot area with Oxyplot

I'm trying to create a square graph (X axis width is the same as the Y axis height). I can't find any documentation on this and all of the properties I've seen which might be able to do this are inaccessible. I've tried:
gleng
  • 6,185
  • 4
  • 21
  • 35
7
votes
0 answers

How to set DefaultFont to custom font in OxyPlot?

I am using OxyPlot in a WPF application to plot a simple LineSeries. I also defined Roboto as the standard font of my application. However my PlotView does not use this font but uses its default font Segoe UI. The PlotModel offers a DefaultFont…
Jonas Bürkel
  • 708
  • 5
  • 16
7
votes
1 answer

Multi color Marker for same LineSeries - OxyPlot

Is it possible to have a different marker style for ranges among (XY-Axis) values ? For example. The marker style is shown in steel blue color here, Can I have markers above 15 and below 13 to show another color ? Display:
Rene Duchamp
  • 2,429
  • 2
  • 21
  • 29
7
votes
2 answers

How can I show the plot points in Oxyplot for a line Graph?

Here is the xaml code to my graph:
JBurlison
  • 551
  • 3
  • 12
  • 23
6
votes
1 answer

Styling WPF OxyPlot PlotViews in XAML

When setting up an OxyPlot plot view, you can either define the plot explicitly through various controls, or set it up through a binding to a PlotModel. As such, in the first case, the XAML for a plot of two LineSeries objects could look something…
fuglede
  • 17,388
  • 2
  • 54
  • 99
6
votes
1 answer

OxyPlot legend items managing

is there any way to manage items in legend? I mean e.q. remove some items from legend but not from whole plot? I know that each serie in plot is linked with one item in legend, but i want to break this rule and put to legend only selected…
Shadow2334
  • 111
  • 1
  • 1
  • 6
6
votes
2 answers

How can I make OxyPlot adjust zoom when calling PlotView.Invalidate?

I have a problem with OxyPlot which is as follows: I create a new PlotView and attach a PlotModel with some axes when my program starts. In my program, the user can open a file, which is interpreted and plotted in the PlotView control. To display…
user1938742
  • 305
  • 1
  • 6
  • 18
1
2 3
36 37