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

Pass the Debugging from Assemby/NuGet Package, OxyPlot

Good afternoon, I had to use a graph for my project so i downloaded two NuGet Oxyplot.Core Oxyplot.Wpf. Which is great but every time I do F11 and try to debug through my code it always ask me where is oxyplot.cs. So following on internet did some…
mechbaral
  • 103
  • 7
0
votes
1 answer

Oxyplot graph takes up whole screen for display

I just started using using oxyplot library for my project. I successfully added a donut chart in my project but the problem with this is that it takes up the whole screen to show the graph. Is tried so many way to solve this but none of them…
Nick King
  • 190
  • 3
  • 20
0
votes
1 answer

OxyPlot graph not rendering in child Grid

I'm making a statistics application using OxyPlot WPF where the user inputs the class limits and the frequencies for each class. Then you chose which of the 4 graphs you want displayed. Then the graph gets displayed in that white box (see image…
Evan G
  • 21
  • 5
0
votes
1 answer

System.ObjectDisposedException: Cannot access a disposed object. - How to check if App is running in Xamarin?

I'm currently creating an app with Xamarin in combination with oxyplot. My plot is visible on the main app page and whenever I close my app, it crashes with the following message: Unhandled Exception: System.ObjectDisposedException: Cannot access a…
Hagbard
  • 3,430
  • 5
  • 28
  • 64
0
votes
2 answers

Oxyplot - edit the left-click label in a LineSeries

I'm plotting a few different LineSeries in Oxyplot (in C#, using Windows Forms), which all have wildly different ranges. To make every series still visible, I'm scaling all their values to the range from 0 to 1. Of course the problem here is, that…
JohnH
  • 45
  • 8
0
votes
1 answer

Serialization of a OxyPlot Chart to XAML

I generated a PageBuilder different UI-Models (TextBlocks, Images) for creating a XAMLLayout. For this I placed all my Elements on a Canvas and save the complete Canvas to a Xaml-File (With the XamlWriter.Save-Method). Now I need to generate Charts…
0
votes
1 answer

Xamarin.Forms.Forms.Init() not found

I'm trying to get Oxyplot to run with Xamarin for an Android app. The documentation states the following: Initialize renderers You need to initialize the OxyPlot renderers by adding the following call just after Xamarin.Forms.Forms.Init(): iOS…
Hagbard
  • 3,430
  • 5
  • 28
  • 64
0
votes
1 answer

Xamarin.Forms.OxyPlot TapGestureRecognizer not working

i'd like to add a TapGestureRecognizer to an OxyPlot PlotView. The tap is only recognized when point is outside of the graph area, just on the borders. It is not fired when tapping in the middle of the graph. What am I missing?
apic
  • 65
  • 1
  • 6
0
votes
2 answers

OxyPlot - MouseDown event does not fire on line series

On my OxyPlot I have a DelegatePlotCommand bound to the PlotController.MouseDown event: var commandLeft = new DelegatePlotCommand((v, c, a) => { a.Handled = true; if…
laserman
  • 233
  • 2
  • 10
0
votes
1 answer

Oxyplot in xamarin not generated

I ran in to an issue in generating oxyplot with dynamic data. This is the first time I'm using oxyplot with dynamic data. public async Task AreaChart_NoOfPoliciesAsync() { var plotModel1 = new PlotModel { Title = "Number of…
Anshu
  • 374
  • 1
  • 4
  • 18
0
votes
1 answer

Oxyplot: Wrong scaling in volume chart

I have a problem with the scaling of a volume chart in case there are less than three data entries for either the x- or y-axis. Everything works fine if there are more entries: If either the x-axis or the y-axis has less than three data entries,…
Roland Deschain
  • 2,211
  • 19
  • 50
0
votes
1 answer

Oxyplot- WPF: Adding data from a List of double to DataPoint

I am new to WPF and the project I'm working on requires me to plot a list of double on XY chart. I added Oxyplot to my project for the charting but I'm having challenges to get a plot. I followed the example on Oxyplot site (see code below), but I…
crammer
  • 21
  • 7
0
votes
1 answer

How I can get all colors in OxyPlot?

I have a one question. I use OxyPlot in WPF, C#. I need to have all colors to MarkerType and MarkerStroke for series. How I can get all colors?
Mario
  • 9
  • 3
0
votes
1 answer

C# OxyPlot Textposition of PolygonAnnotation

I am having two PolygonAnnotation shown on a PlotModel. I want to connect them via one ArrowAnnotation. As Startpoint and Endpoint of the ArrowAnnotation I want to have a defined point of respective PolygonAnnotation, not the clicked position. As…
Kunibert
  • 21
  • 8
0
votes
0 answers

OxyPlot MajorStep is always start 0?

this is my sample code. var linearAxisX = new LinearAxis { Position = AxisPosition.Bottom, MajorStep = 0.3, StringFormat = "F1", IsZoomEnabled = false, …
yong
  • 61
  • 8