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

OxyPlot: how to add background according to axis range

In recent c# wpf application, I used the oxyplot for trending. It's a great tool with high performance on volume datum. I moved from LiveChart to Oxyplot. How to realize the section background depending on the axis range? TargetEffect I have tried…
Yuzhe Zhou
  • 157
  • 2
  • 11
0
votes
1 answer

How to possible Xamarin Forms Vertical Bar Charts?

In my xamarin forms application, I am using the Oxyplot bar charts. Here is the code, This is work for me in the condition for horizontal bars, How it is possible for creating for vertical graphs? Is there any other plugin for bar charts?
Sanjeev S
  • 626
  • 1
  • 8
  • 27
0
votes
1 answer

Creating Oxyplot PlotModel that automatically updates with new data incoming

I've been following this excellent tutorial found here in order to learn how to create LineSeries plots using OxyPlot while following MVVC. I've also downloaded, and after some error fixing, managed to get the author's source code for the tutorial…
Mantracker
  • 613
  • 10
  • 22
0
votes
0 answers

UserControl won't stretch into StackPanel

I have a Dashboard with diffrent tiles. In my last tile, I included a OxyPlot-Chart as a UserControl. But it's the only UserControl that won't stretch. It renders with Height = 0. I just get the result by setting the height to a fix size - Auto also…
a.w.
  • 261
  • 2
  • 16
0
votes
1 answer

Show me the x-axis and the y-axis in OxyPlot

This is my current status In the picture you see two yellow tones and two reds.The brighter colors are the lines created with the code. The darker colors have been painted with paint.I would love to show the Middle Achs. I already do this, but not…
user7725461
0
votes
1 answer

Oxyplot C# Win Forms - Spreading out data on x axis

I'm plotting relatively large amounts of data (~ 1 million points). The plot is working fine, but it seems that it is forcing all of the points within the viewable window despite default scrolling being enabled. Any way to make it more readable?…
0
votes
1 answer

Read coordinates from OxyPlot

I have a coordinate system with OxyPlot. Different points are generated in this coordinate system. Now I would gladly ask the points by button, is it possible to read the points again? The points are displayed in the coordinate system. This is e.g.…
user7597016
0
votes
0 answers

OxyPlot dll error - Strongly Named Assembly required

I am a UI developer trying to research OxyPlot for potential use in a project. I have installed the NuGet packages but when I try to place an instance on an OxyPlot control on my window I get a build error stating that I need a "strongly-named…
user3519506
  • 135
  • 1
  • 2
  • 11
0
votes
1 answer

How to auto scroll/pan Oxyplot after it has more than a set maximum points?

I'm using the following LinearAxis as my X-Axis, I'd like to set the minimum as 0 and maximum as 300. But in some situation, the X-Axis can go beyond 300. In that case, I want the x-axis to auto scroll.
Felix
  • 2,673
  • 3
  • 30
  • 38
0
votes
1 answer

draw a point on a graph using oxyplot on wpf application

In my project I want to draw a point on a real-time graph whenever the graph is equal to a certain value. I don't know how do that. This is the code that I use to show the real time graph: public class MainViewModel { public PlotModel DataPlot…
riccardo
  • 1
  • 3
0
votes
1 answer

OxyPlot find the selected LineSeries

I have a PlotModel with multiple LineSeries painted. What I'm looking for is a trick to select all the LineSeries which the point, detect by the MouseDown event, belongs to. I've done this: this.MouseDown +=…
ctt_it
  • 339
  • 1
  • 6
  • 22
0
votes
1 answer

How to set space between interval on axis oxyplot

I'm working with Oxyplot to draw an image using image annotation. I need to set axis interval space so that the image looks stretch. Here what I mean by set the axis interval space This the normal space and this is how I want it I got it from an…
AchmadJP
  • 893
  • 8
  • 17
0
votes
0 answers

Removing points from oxyplot line series (graph that wraps around back to beginning)

I'm trying to make a line series graph in Oxyplot that wraps around back to the beginning, but I'm having a difficult time removing old points from the graph. I've tried both the Series.Remove and Series.RemoveAt methods, but neither have worked. My…
Lukeyb
  • 807
  • 6
  • 24
0
votes
0 answers

Updating Oxyplot graph in real time and separate from WPF form loading (c#)

I have just moved over from windows forms to WPF (c#) and am struggling coming to grips with OxyPlot, after making the switch from ZedGraphs. After hours of searching the internet and watching tutorials here i am... I currently have a graph that's…
charley
  • 87
  • 4
  • 17
0
votes
1 answer

Xamarin android 'MainActivity' does not implement interface member

I am working on xamarin android in visual studio. I have added a scroll viewin my layout and inside it i have placed my linear layout and then two plot views in which there are two charts are initialized. While running the app i am getting the…
Moeez
  • 494
  • 9
  • 55
  • 147