New Post: Rectangle annotation click
Thanks, that set me off down a different route:var rect1 = new RectangleAnnotation(); rect1.Fill = GlassMainColor.ToOxyColor(); rect1.StrokeThickness = 1; rect1.MinimumX = g1; rect1.MaximumX = g2;...
View ArticleNew Post: iOS CoreText Slowing Down Plot Render on First Draw?
I played around with caching CTFont and did not get the performance benefit I thought I might. After a little more digging I turned up http://stackoverflow.com/questions/6062420/core-text-performance....
View ArticleNew Post: Xamarin ios timespan axis freezes on iphone 4
Liam, Can you run instruments against your iPhone 4 and see where your app is spending all of its time? -ben
View ArticleCommented Unassigned: Poor live data performance [10134]
Based on [this article](https://oxyplot.codeplex.com/discussions/281036) I'm using PlotModel.RefreshPlot(true) frequently to load live data, approximately 20 times per second or so, but the performance...
View ArticleNew Post: OxyPlot in Xamarin Studio
So doing further research into this, I've found some info that other people in my situation should know. If you try to open the OxyPlot.XamarinAndroid solution in Xamarin Studio, you will receive the...
View ArticleNew Post: OxyPlot in Xamarin Studio
Little more info. It actually is possible (I think). Portable Library Tools can be installed on a computer without Visual Studio on it if you run the installer from the command line and add the...
View ArticleNew Post: OxyPlot in Xamarin Studio
So I think that I've just about got this all figured out. So with just the Portable Library Tools, you'll run into issues about not having .net portable v4.0 profile 136. To get around this issue as...
View ArticleCreated Unassigned: Remove PlotModel.RefreshPlot() [10166]
RefreshPlot() was meant to be the synchronous version (waiting for rendering) of InvalidatePlot().Most platforms does not allow to use synchronous code in UI for a good reason.Thus RefreshPlot() is...
View ArticleSource code checked in, #1c4fd6bfd094
Fix StyleCop errors, improve comments Remove Plot.Properies partial class for Silverlight and Metro
View ArticleNew Post: Xamarin ios timespan axis freezes on iphone 4
Hi Ben Thanks for your response. I ran instruments with the time profiler but I am not too sure what I am looking for? Here is a link to the data from instruments...
View ArticleCommented Unassigned: Remove PlotModel.RefreshPlot() [10166]
RefreshPlot() was meant to be the synchronous version (waiting for rendering) of InvalidatePlot().Most platforms does not allow to use synchronous code in UI for a good reason.Thus RefreshPlot() is...
View ArticleCommented Unassigned: Remove mouse events from plot elements [10132]
We can achieve the same functionality by using a `PlotController`https://oxyplot.codeplex.com/workitem/9625* Better separation of controller logic and model* Less code* Better performance of...
View ArticleNew Post: Xamarin ios timespan axis freezes on iphone 4
Liam, I cannot confirm running on less than 5s and iPad 3...but my app does have an x-axis that is a date axis...I'm about to release a new version of code with OxyPlot in it. Thus if there is a major...
View ArticleCommented Unassigned: Poor live data performance [10134]
Based on [this article](https://oxyplot.codeplex.com/discussions/281036) I'm using PlotModel.RefreshPlot(true) frequently to load live data, approximately 20 times per second or so, but the performance...
View ArticleCommented Unassigned: Poor live data performance [10134]
Based on [this article](https://oxyplot.codeplex.com/discussions/281036) I'm using PlotModel.RefreshPlot(true) frequently to load live data, approximately 20 times per second or so, but the performance...
View ArticleCommented Unassigned: Poor live data performance [10134]
Based on [this article](https://oxyplot.codeplex.com/discussions/281036) I'm using PlotModel.RefreshPlot(true) frequently to load live data, approximately 20 times per second or so, but the performance...
View ArticleCommented Unassigned: oxyplot - 2014.1.245.1 get_ActualFont Error [10157]
Hi All, After updating to new version of oxyplot, I am getting below error. Could you please help me to resolve this. Attached sample code.__<package id="OxyPlot.Core" version="2014.1.245.1"...
View ArticleCreated Unassigned: Nuget packages should use versoin on dependencies [10167]
The nuget packages that reference the OxyPlot.Core package should use the exact version for this dependency:```xml<dependency id="OxyPlot.Core" version="[2014.1.1]"/>```So the Nuget does...
View ArticleCommented Unassigned: XAML Canvas ancestor causes issues with...
I am trying to use a OxyPlot.WPF.Plot with a Canvas as its immediate ancestor and am running into graphical issues. I noticed that the Plot is by default non-visible. The only way to resolve this is by...
View Article