New Post: OxyPlot on Silverlight 5 vs2010
I included all assemblies in the same download from build #51. It's a larger file (28Mb), but it should be easier to find the assemblies you need.
View ArticleNew Post: Rendering performance when plotting multi lineseries with high fps
objo wrote: See https://oxyplot.codeplex.com/wikipage?title=Performance&referringTitle=Documentation Turn off markers, axis grid lines, smoothing. Do not use ItemsSource (binding is slow). 125000...
View ArticleNew Post: Multiple LineSeries Binding
Hi, I had a similar situation some months ago when I needed to "bind" a plot to a custom class which had a set of data representing plot series (mainly StairStepSeries and AreaSeries). My solution was...
View ArticleNew Post: OxyPlot on Silverlight 5 vs2010
Thanks, that did the trick. Although that portable library plug-in introduced the following warning in my error list, but it seems to work anyway. Warning 1 The following exception occurred creating...
View ArticleNew Post: OxyPlot on Silverlight 5 vs2010
By removing the contents from the bin folder and recompiling, it removed this warning
View ArticleNew Post: expose silverlight controls in xaml
Hi, I'm a big fan of binding and using as much xaml as possible. I do this when I use oxyplot in wpf, but can't in silverlight. What would need to be added to expose the same controls (axesm series,...
View ArticleNew Post: Multiple LineSeries Binding
Thanks, I've managed doing that by creating an ObservableCollection<LineSeries> and then with a foreach loop I update when it's needed. (I can't do the same as you because I don't know how many...
View ArticleNew Post: Two or more plots per Form?
Dear OxyPlotUsers I have been experimenting with OxyPlot under vb.net and trying to reproduce few of the plots shown in the example list. While this has been alright, I was wondering how one could show...
View ArticleNew Post: Multiple LineSeries Binding
Then maybe you should bind directly the Series property of the Plot (I don't remember if this is possible) to your collection or, as objo stated, you can assign your...
View ArticleNew Post: Multiple LineSeries Binding
That's exactly what I was asking, and as objo said it's not possible right now to bind "Series" to a collection of LineSeries.
View ArticleUpdated Wiki: Home
Project DescriptionOxyPlot is an open source, cross-platform .NET plotting library.ExamplesSee the Silverlight Example BrowserNuGet packages (updated at every code check-in) WPF*...
View ArticleEdited Issue: Add XAML support for all series classes [9999]
Add XAML support for all types of axes and series for WPF, Silverlight and Windows Store Apps. Include all properties.Create a tool that generates this code automatically.
View ArticleNew Post: expose silverlight controls in xaml
It should be possible to implement the Silverlight axis and series wrappers almost identically to the WPF ones. But I would like to make a small tool to automate this code generation, doing it manually...
View ArticleNew Post: Limiting the zoom and restarting the axes
Hello, I'm using OxyPlot for WPF and I can't find a way to reset the axes. I want to achieve the same effect as when you press the button "A" with the plot focused. I've seen in the source that...
View ArticleEdited Issue: Complete XAML support [9999]
Add XAML support for all types of annotations, axes and series for WPF, Silverlight and Windows Store Apps. Include all properties.Create a tool that generates this code automatically.
View ArticleNew Post: Trouble getting plot to refresh
My xaml defining my plot.<Grid Style="{StaticResource ContentRoot}"> <oxy:Plot x:Name="CloudLayerPlot" Model="{Binding CloudLayerPlotModel}" Width="600" Margin="0,0,0,0" /> </Grid>...
View ArticleNew Post: Trouble getting plot to refresh
I think it is just a binding problem, you should implement INotifyPropertyChanged for your main class:YourClass : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged;...
View ArticleNew Post: Is it possible to set your own interval on a logarithmic scale?
I'm trying to create a more natural logarithmic scale, much like the x axis on this graph..http://openeeg.sourceforge.net/doc/modeeg/images/filter_delay_log.png By setting the base to 2.718281828 I get...
View ArticleNew Post: Is it possible to set your own interval on a logarithmic scale?
I think I need to be setting the major step but i'm not sure... So this is exactly what I want...https://www.dropbox.com/s/njef6lzuts2qrof/log2.png But this is plotting from 0.1 to 1. I need to plot...
View Article