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 Graph Not Displaying On Xamarin Forms uwp release mode

I created a xamarin forms project which is using oxyplot and Rg.Plugins.Popup xamarin forms. However, the graph does not work as excepted. I modified code refer to the link, but graph not show on UWP . In addition, I init Rg.Plugins.Popup and …
zhi qin wang
  • 105
  • 8
0
votes
1 answer

LinieSeries Color Binding not work oxyPlot

I'm trying to bind the LineSeries Color to my viewmodel. It has no effect. What is wrong? The Datacontext is set in the MainWindow. That works because I get the data from Chartpoints.
Nix
  • 3
  • 3
0
votes
1 answer

How to zoom/pan in OxyPlot.PlotView inside NestedScrollView without scrolling?

In my Android app made with Xamarin.Android I have a chart that uses OxyPlot.Android. The chart is a PlotView and is inside a NestedScrollView. The chart has pan and zoom enabled, but when I try to pan or zoom, the NestedScrollView also scrolls. How…
Nesh
  • 147
  • 1
  • 7
0
votes
0 answers

Override color for OxyPlot BarChart not working

I am using OxyPlot BarChart in my WPF project. I am creating dynamic columns, and changing ColumnSeries.FillColor property with: FillColor = OxyColor.FromRgb((byte)rnd.Next(0, 255), (byte)rnd.Next(0, 255), (byte)rnd.Next(0, 255)) For example, our…
YSFKBDY
  • 735
  • 1
  • 12
  • 38
0
votes
1 answer

Refresh and Clear Oxyplot Model

I'm Creating a program which creates a plot after btnCalculate_Click using oxyplot. What can I do so that whenever I change a textbox value and click on btnCalculate it can refresh the plot? I also have btnPrint and on click it should clear the…
VinihRuiy
  • 3
  • 1
  • 3
0
votes
1 answer

Tooltip position in Oxyplot

I am recently using OxyPlot to draw charts for my WPF project. I have an issue with the tooltip in a line series. The rectangle box of the tooltip is too close to the point my mouse locates. I am wondering if there is any way to modify the position…
Ben
  • 957
  • 1
  • 11
  • 37
0
votes
1 answer

Rebinding Datacontext to update oxyplot graph

I want to be able to refresh the graph created by Oxyplot but am struggling to do so. In theory the this.model.InvalidatePlot(true); should update it, but it does not want to. MainPage.xaml.cs using OxyPlot; using OxyPlot.Axes; using…
0
votes
1 answer

Change color of zoom rectangle

I'm using OxyPlot in my application. I want to change the color of the rectangle when marking an area for zooming. I just used Controller to bind the left mouse button to zoom: ChartController = new PlotController();…
0
votes
1 answer

OxyPlot XAML unknown series count

Is there a way, to bind the series of a OxyPlot in XAML, if I don't know, how many series I will have? I know, that I can create a PlotModel, maybe I can bind a Collection of Series. But what I am realy looking for is, if I can bind the series to…
RCP161
  • 199
  • 1
  • 13
0
votes
1 answer

Oxyplot throw exception when I add so many graphs

I want to drow so many graphs with OxyPlot Library. And I'm testing now that I can add how many graphs with dynamic (but I'll not add graphs over 10000 graphs because it's max graphs in real application). However when I'll add over 200 graphs, the…
siksmtt
  • 91
  • 9
0
votes
0 answers

Xamarin app performance degrading over time, eventually leading to crash

I'm currently developing a Xamarin app that communicates via a Wi-Fi connection with some custom hardware containing a sensor. The job of my app is to retrieve the sensor data from the hardware and display it with oxyplot as a continuous stream of…
Hagbard
  • 3,430
  • 5
  • 28
  • 64
0
votes
2 answers

Binding OxyPlot Tracker and set getting value in TextBlock

Project - WPF, C#, IDE - Visual Studio. I want bind value traking on my PlotView. My code XAML:
Range
  • 416
  • 7
  • 20
0
votes
1 answer

Linechart show info on point tapped

I'm implementing a little app with Xamarin Forms for a web page, the thing is that in this web is a linear chart with multiple entries and if the user clicks on a point of the line shows info about that point, as you can see in the picture: Web Line…
notarealgreal
  • 734
  • 16
  • 29
0
votes
0 answers

OxyPlot DateTimeAxis, Show Index instead of Time

I have a Oxyplot Graph in my WPF application, with LinearAxis as Y, and DateTimeAxis as X. This works fine. My question was more on the Displayed Labels in DateTimeAxis. Instead of displaying Time, I would like to display Index. For example, I…
Anu Viswan
  • 17,797
  • 2
  • 22
  • 51
0
votes
1 answer

Xamarin Forms: Remove or Hide the LinearAxis from the Piechart

How to remove oxyplot linear Axis lines(black border line as shown in image). I tried to hide the visibility of axis lines using below code,but the lines are still visible Code: modelP2.Series.Add(seriesP2); modelP2.Axes.Add(new…
Mars
  • 269
  • 1
  • 3
  • 22