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

Charts does not display with DataPoint in OxyPlot MVVM WPF

I have a problem with DataPoint. Charts does not display anything, and I hope to find out why.
A191919
  • 3,422
  • 7
  • 49
  • 93
0
votes
1 answer

various OxyPlot project types not supported in Visual Studio 2013

I want to fix an OxyPlot bug. Upon opening OxyPlot.sln with Visual Studio 2013 Express, the following problems appear. This support link suggests I need Portable Library Tools 2 but that software is meant for Visual Studio 2010. Installing it did…
H2ONaCl
  • 10,644
  • 14
  • 70
  • 114
0
votes
1 answer

Edit a single point in LineSeries oxyplot

I am currently exploring oxyplot and wanted to edit a single point in my lineseries. (see image) For example I want to edit the second point. I want it to be twice the size that it normally is or change the colour. Is that possible without…
Arnout
  • 157
  • 1
  • 13
0
votes
1 answer

Oxyplot adding reference

I tried to follow the following link to start learning OxyPlot I added reference using "Manage NuGet Packages...". However, using OxyPlot; is still underlined (the type or namespace 'OxyPlot' could not be found...) I tried Package Manager Console…
user1700890
  • 7,144
  • 18
  • 87
  • 183
0
votes
1 answer

Oxyplot BarSeries format function

I need to format the label inside the BarItem so it can have a time format, like 00:10. I'm using the BarSeries.Format function, but if I don't use the BarSeries.LabelFormatString the labels don't show and if I use LabelFormatString all labels…
VeYroN
  • 760
  • 9
  • 19
0
votes
1 answer

Put Date on LineSeries

I have data with date against data so I wanted to plot LineSeries of it. I am using following code I wanted to put Date on X-axis and bind my data with my dates. public class LineChart { public PlotModel MyModel { get; set; } DateTime…
Rohit
  • 2,646
  • 6
  • 27
  • 52
0
votes
2 answers

Trouble zooming with axis crossing at 0 in Oxyplot

[Edit: I submitted an issue about this on the OxyPlot GitHub] I have an OxyPlot cartesian graph in a WPF Window with some FunctionSeries. When I set PositionAtZeroCrossing at true for both the axes, several problems appear : 1) The titles are not…
cmousset
  • 625
  • 7
  • 21
0
votes
2 answers

Struggling with OxyPlot

Been learning C#, and WPF for about 5 or 6 weeks now, and I'm working as an Intern on a project . Not doing to bad, but right now I'm stuck and I cant figure out why. Trying to migrate a WinForms application over to WPF. The old application used…
Reaver
  • 1
  • 2
0
votes
1 answer

OxyPlot: AngleAxis labels rotation in Polar Plots

When an AngleAxis is created, the associated labels are rotated depending on the axes angles. Is it possible to choose a different angle rotation for those labels, for example, make them horizontal (no rotation)? ​ Thanks.
juliomrqz
  • 1
  • 2
  • 3
0
votes
1 answer

Replacing OxyPlot Chart in LongListSelector ItemSource

I have a bit of a unique setup on one page in my Windows Phone App that I'm having issues with and I'm not sure if it's an issue with the library I'm using or how I have the page setup. Long story short, on one page I have LongListSelector that…
Sal Aldana
  • 1,235
  • 4
  • 17
  • 39
0
votes
1 answer

Oxyplot for Xamarin Android

I have plotted a graph in Xamarin Android using the trial Library of TreeChart. But the full version is expensive. I now want to use something that is free. I thought of using Oxyplot. I added a reference to the NuGet package of Oxyplot.Android in…
user3146095
  • 419
  • 2
  • 7
  • 25
0
votes
1 answer

Does expander break OxyPlot?

When my application starts up I don't want a visible Chart as there's nothing that's been processed. I thought I can "hide" the Chart in an Expander - (simple minded, perhaps). The following code appears to break OxyPlot:
infowanna
  • 169
  • 11
0
votes
1 answer

PropertyChanged is null when calling thread from another class

I have MainWindow class on which im showing realtime chart that is specified in DataChart class. Now when I run my app, chart will start adding new data and refreshing, because I start new thread for this in constructor of DataChart class. But what…
BblackK
  • 524
  • 1
  • 8
  • 25
0
votes
1 answer

Error in references

I am not sure why there is an error in the references. OxyPlot.Wpf.LineSeries to OxyPlot.Series.Series The best overloaded method match for System.Collections.ObjectModel.Collection.Add(OxyPlot.Axes.Axis) has some invalid arguments. using…
user2864566
  • 71
  • 1
  • 1
  • 4
0
votes
2 answers

Storing multiple double variables into a single list in C#

List measurements = new List(); double minimumx; double maximumx; double delta; double actualValues; //. //. //. //. //.Functionality of the above variables all stored as double //. //. //. //. How do I store all the above double…
user2864566
  • 71
  • 1
  • 1
  • 4