Source code checked in, #ad21a66e7976
Axis and Series: Moved ActualCulture property to PlotElement PlotElement: Added Format method
View ArticleSource code checked in, #f971f0cc374c
Wpf: added font family cache to ShapesRenderContext [discussion:456679]
View ArticleSource code checked in, #4e1df0337636
Wpf: Changed Culture property to type CultureInfo
View ArticleNew Post: Slow redraws with noisy data in WPF
I don't know really about your code but did you try out the following suggestions http://msdn.microsoft.com/en-us/library/ee230083.aspx and http://msdn.microsoft.com/en-us/library/ee230085.aspx
View ArticleCommented Unassigned: Argument out of range in OxyPlot mouse over [10061]
I am using the oxyplot library under wpf (And I'm very happy with it) to display multiple scaled lines in the same Graph.I have also changed some of the mouse events functionality to better represent...
View ArticleClosed Unassigned: Argument out of range in OxyPlot mouse over [10061]
I am using the oxyplot library under wpf (And I'm very happy with it) to display multiple scaled lines in the same Graph.I have also changed some of the mouse events functionality to better represent...
View ArticleNew Post: Slow redraws with noisy data in WPF
I tried using a BitmapCache for the canvas and as far as I could tell it did not affect visual quality or performance at all. I think that's because canvas.Children changes on every update, so the...
View ArticleNew Post: I keep getting a crash in ListFiller:Fill
I keep getting random crashed in the Fill function in ListFiller.cs. I get the Collection was modified; enumeration operation may not execute error on IEnumerable source in the foreach (var sourceItem...
View ArticleNew Post: Using line series as annotation
The LineAnnotation is intended for straight lines. I think a PolylineAnnotation should be created for polylines, and the implementation should be much easier than the LineAnnotation :)
View ArticleNew Post: WPF Low performance with Axis grid lines
See https://oxyplot.codeplex.com/wikipage?title=Performance&referringTitle=Documentation Dotted lines are not performing well in WPF. There is nothing we can do about that, I think.
View ArticleNew Post: Contour plot, fill color and logarithmic scale
You can set the ContourLevels property of the ContourSeries. Currently, it is not possible to fill the gap between the contour levels. But you can add a HeatMapSeries before the ContourSeries - see the...
View ArticleNew Post: I keep getting a crash in ListFiller:Fill
Is this problem solved when you use ToArray/ToList in your application? I would like to avoid adding this to OxyPlot, as I guess there may be a performance hit for large datasets. Can we lock the...
View ArticleNew Post: I keep getting a crash in ListFiller:Fill
It has been solved where I've used it in other places, but obviously can't here. I'll have a look at syncroot, thanks.
View ArticleNew Post: Contour plot, fill color and logarithmic scale
Thank you objo for you answer. Indeed, I set the ContourLevels to {1,10,100,1000}, creating a logarithmic scale. Concerning the HeatMapSeries, I did not managed to use it. I have the following error...
View ArticleNew Post: WPF Low performance with Axis grid lines
Thanks for the link! I just switched to solid lines and indeed it's faster.
View ArticleNew Post: Using line series as annotation
You say that the line annotation is intended for straight lines, but I can easily do this:LineAnnotation lineAnnotation = new LineAnnotation() { Equation = (double x) => { return Math.Sin(x); },...
View ArticleNew Post: Using line series as annotation
Right, I forgot that :) I think that feature should be removed from the LineAnnotation, and suggest to create a subclass FunctionAnnotation!
View Article