New Post: Adding multiple instances of a LineSeries to OxyPlot
Anyone with an idea? ...bump
View ArticleNew Post: Adding multiple instances of a LineSeries to OxyPlot
In my opinion you are doing it wrong, try to follow any example where the model is linked using "Binding". That way you only need to create a LineSeries and then to add it to the Series collection of...
View ArticleNew Post: Adding multiple instances of a LineSeries to OxyPlot
Thanks, I'll try to create a DataBinding so I don't have to do all the work from code-Behind. Maybe things will work better, but won't I still have the issue of adding multiple LineSeries to the same...
View ArticleNew Post: Adding multiple instances of a LineSeries to OxyPlot
For the record, I answered my own question. The answer can be found here:"http://stackoverflow.com/questions/24938689/how-to-plot-multiple-lineseries-on-an-oxyplot-chart/24942582#24942582"
View ArticleCreated Unassigned: How to install nuget package to WP8.1? [10235]
Hi,Attempting to resolve dependency 'OxyPlot.Core (≥ 2014.1.319.1)'.'OxyPlot.Core 2014.1.319.1' already installed.Installing 'OxyPlot.WP8 2014.1.319.1'.Successfully installed 'OxyPlot.WP8...
View ArticleNew Post: Lineseries.Color bug, help
That's because LineSeries.Color is actually initialized to OxyColors.Automatic if you don't define it yourself. This allows whatever you've set to PlotModel.DefaultColors to handle giving line series...
View ArticleNew Post: Oxyplot Xamarin.Forms Version
Here's a starting point:https://github.com/conceptdev/xamarin-forms-samples/tree/master/OxyPlotDemohttp://www.youtube.com/watch?v=IbKNCpdV1bE&feature=youtu.be
View ArticleNew Post: Lineseries.Color bug, help
This information is so helpful! Thanks so much! You're always so helpful :)
View ArticleNew Post: Checkable legend
objo wrote: Sorry, this is currently not possible. (this will require checkbox and binding functionality in the IRenderingContext) I think this should be solved by the client application - if you use...
View ArticleNew Post: Adding an element to a PlotModel
But, in WPF, how i do [Derive from Annotation and override the Render method]?
View ArticleNew Post: Real time data and panning problem
Hi, I am using the Xamarin iOS component and have two plots that get real time data and I have two small issues. When I synchronize the vertical axis of the two plots and when I move the Y axis on...
View ArticleNew Post: AltSketch Render
Hi again from AltSoftLab Team! In about a year we got many new features in our AltSketch Graphics Library. First of all we get HW Render Backends in many Graphics Platforms and Mobile Platforms...
View ArticleNew Post: Real time data and panning problem
Ok, for question 2 I've found a solution. I am calling Reset() on both axis 2 seconds after panning stopped. Question 1 is still up though! Thanks!
View ArticleNew Post: How to add a WPF Control ?
How to add a WPF Control (eg. Border,Button and so on ) to the plot ?
View ArticleNew Post: Checkable legend
The legend in OxyPlot is pretty basic. If you want to do something like this you'll have to dynamically add checkboxes (and CheckChanged events) to a flow layout, I do it in an in-house app by using...
View ArticleNew Post: Real time data and panning problem
In fact, real time data doesn't auto-scrolls by default. Its just fitting all data in the same window by modifying the X/Y axis interval.
View ArticleNew Post: Checkable legend
First, let me thank you for you response. Yes , I need you more help, need sample code.
View ArticleNew Post: Real time data and panning problem
Yup there's no auto scrolling built into OxyPlot at all. Every time you add new data to the Points lists on series tied to Axes, and you call InvalidatePlot(true), OxyPlot will recalculate the...
View ArticleNew Post: Checkable legend
Well the most basic thing you can do (assuming you want to display Series and Axes) is create a SplitContainer, with each Panel inside being a FlowLayoutPanel. Then as you add Series and Axes to the...
View Article