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

C# oxyplot get data from graph

im trying to make a plot of some points using this, however i would like to show the actual values when the user clicks on any point of the plot in the window. Somehow this is done automatically when doing a WPF app, but not when doing a windows…
Cristiano Coelho
  • 1,675
  • 4
  • 27
  • 50
-1
votes
1 answer

How to force IsVisible = true in a windowless (server side) WPF widget?

In a windows service I'm trying to render a WPF Control into a png and the problem is one of the controls involved (namely an Oxyplot PlotView) checks if the control is actually visible and if not does not draw anything. The only way I've found to…
-1
votes
1 answer

How to use oxyplot with DataBinding in wpf

I'm trying to use the oxyplot library in my WPF application. also, I'm using the MVVM pattern. one of the main parts of this pattern never uses "UI" specific in the "ViewModel" project. but when I look at the examples for this library, I see people…
Inevitable
  • 37
  • 1
  • 5
-1
votes
1 answer

Oxyplot - hide intermediate axes values

Hi All, I am using oxyplot for my WPF application, I wish to show a graph like this. is there a way I can hide the values on the axes like 50/100/150. I also need final values like 255, but what I see from the usage, the Oxyplot ends up showing me…
Sandepku
  • 861
  • 14
  • 31
-1
votes
1 answer

C# OxyPlot: How to display point values on chart?

can anyone suggest how to display the values of the points on the chart? something like that. Chart:
-1
votes
2 answers

Binding DisplayMemberPath of ComboBox to a string method

I need to get a full collection of OxyPlot colors and bind them to a ComboBox of DataGrid for future selection. I managed to do it, but the names displayed in ComboBox are "0x00ff", "0x0001", etc. Unfortunately, I can only get an actual color name…
Perotto
  • 194
  • 1
  • 14
-1
votes
1 answer

Setting OxyPlot chart title

I am using OxyPlot to show a basic line-Chart under WPF/.net 4.5 and the relevant part of the XAML looks like this:
dunkleosteus
  • 336
  • 1
  • 12
-1
votes
1 answer

Add multiple labels in oxyplot chart without letting them overwrite the linear axis values

I'm trying to add labels for the x and y axes, but the label is actually overwriting the linearaxis values. This is the picture
Okenite
  • 189
  • 1
  • 10
-1
votes
1 answer

OxyPlot PlotView in User Control does not work WinForms

I added PlotView to User Control. Then I added this User Control to the form. When I run program nothing is shown on the form (neither in tableLayoutPanel neither on Panel neither directly on Form. I added PlotView directly on Form without User…
Evg
  • 98
  • 2
  • 7
-1
votes
1 answer

WPF - Plotting a cosine function when radiobutton is clicked

I just started learning C# and I want to plot a cosine when user presses the radiobutton using WPF GUI interface. I think I am having trouble how to use call objects within different class. Thanks in advance and below is my code: namespace…
GaoGaiGar
  • 13
  • 3
-1
votes
1 answer

Oxyplot Model Handle Key Press

OxyPlot's PlotModel and PlotController components contains their own Mouse Handlers, to which you can add or remove you own Handlers. For Instance: this.Model.MouseMove += this.ModelOnMouseMove; public void ModelOnMouseMove(object sender,…
CodyF
  • 4,977
  • 3
  • 26
  • 38
-2
votes
1 answer

OxyPlot strange series

How can I draw something like this: What type of series would I need to use?
A191919
  • 3,422
  • 7
  • 49
  • 93
1 2 3
36
37