New Post: How do I display a graph in Visual Studio?
Hello. So I am using the Example Browser application, and I have pasted the code to VS 2013, like so: I understand that the return type of the Notinterpolatedvalues() method is a PlotModel. Now - how...
View ArticleNew Post: Declaring an instance variable for an OxyPlot graphing object
I am using OxyPlot, a graphing library for C#. What confuses me so far is the type for some of the constructors. A code snippet is below: This generates this image: (It's a heat map) My question is -...
View ArticleNew Post: How do I display a graph in Visual Studio?
I understand now. And it appears this is the reason: stackoverflow.com/a/3422732/1913389 Essentially, it's a convenience factor in the use of var in this instance like "when the type is elsewhere on...
View ArticleNew Post: Declaring an instance variable for an OxyPlot graphing object
You can only use var within method scope:http://msdn.microsoft.com/en-us/library/bb383973.aspx use explicit types for fields and properties. I prefer to use var where possible, it reduces code...
View ArticleNew Post: reports
Great! Do I understand correctly - you used the WPF with the patch applied, not the latest official Nuget version?
View ArticleNew Post: Exception raised on the designer
I tried to use the latest WPF Nuget package with VS 2013 and did not see any exceptions. What version are you using, and do you have the latest updates?
View ArticleNew Post: Declaring an instance variable for an OxyPlot graphing object
Ah I understand now. Thanks.
View ArticleNew Post: Exception raised on the designer
I have the same problem. All updates installed. I am using 2013.2.136.1 version. When I am not using Nuget and connect source project directly - disigner worked. Blend for Visual Studio 2013 crashing...
View ArticleNew Post: Anyone qualifies to write an overview of the 37 forks?
I am not qualified, but I would also like to know! It would be nice to have updated description fields and to know the status of each fork. I am trying to close the pull requests, but for the 3...
View ArticleNew Post: HeatMap white in the zero values (Help)
Ok, solved, here's the solution (this is Objo's answer to another thread): You can create your own palettes like so: var palette = OxyPalette.Interpolate(NUM_COLORS, COLOR_FROM, COLOR_TO); So in this...
View ArticleNew Post: OxyPlot.Axes.DateTimeAxis ArgumentOutOfRangeException and...
Can you show the VB.NET code that fails to compile when you don't comment out the constructor?
View ArticleNew Post: OxyPlot.Axes.DateTimeAxis ArgumentOutOfRangeException and...
_dateAxis = New DateTimeAxis() With _dateAxis .Position = AxisPosition.Bottom .IntervalType = DateTimeIntervalType.Seconds .MajorGridlineStyle = LineStyle.Solid .Key = "AxisDate" .IsPanEnabled = False...
View ArticleNew Post: Confusion Matrices
Wow, that was fast, thanks! 1) Solved, yes, you can use that and it works. 2) I have created a modified version of HeatMapSeries, that does exactly what I need: 2.a) Renders the numbers in the center...
View ArticleSource code checked in, #3e63a1675002
Correct bugs related to axis actual min/max calculations (introduced in [contribution:5791])
View ArticleNew Post: Possible to check if a data point (X,Y) has already been added to a...
Hello, I'm using OxyPlot in an application to display a series of data that repeats, but with some noise in the data. The resulting chart looks similar to how an oscilloscope would look if you were...
View ArticleNew Post: Possible to check if a data point (X,Y) has already been added to a...
You can use Enumerable.Any In your code: series.Points.Any(p => p.X.Equals(X) && p.Y.Equals(Y)) See also 'Testing for equality' on http://msdn.microsoft.com/en-us/library/system.double.aspx
View ArticleReleased: OxyPlot binaries (Sep 04, 2013)
release assemblies (WPF, Silverlight and Windows Forms) examples
View ArticleUpdated Release: OxyPlot binaries (Sep 04, 2013)
release assemblies (WPF, Silverlight and Windows Forms)examples
View ArticleNew Post: Possible to check if a data point (X,Y) has already been added to a...
Thank you so much for the very fast response! That looks like it will do what I need. Now I will test to see if this strategy keeps my plot updates from bogging down... Thank you again so much! I will...
View ArticleSource code checked in, #36df819096f6
HeatMapSeries: support reversed axes, support for value labels (set LabelFontSize>0) Added ConfusionMatrix example [discussion:472455]
View Article