Created Unassigned: Is there no "PlotView" in Xamarin.Android? [10233]
namespace REMS_TST{[Activity(Label = "REMS_TST", MainLauncher = true, Icon = "@drawable/icon")] public class Activity1 : Activity{ int count = 1; protected override void OnCreate(Bundle bundle){...
View ArticleNew Post: How to calculate the screen length of two points?
Help me! I am using WindowsForms. My xAxis is DateTimeAxis, and yAxis is LinearAxis. I have two DataPoint, A and B, I want to calculate the screen length of A and B. In what way can i accomplish this?...
View ArticleNew Post: How to calculate the screen length of two points?
This method in Axis will probably help: xAxis.Transform(double x, double y, Axis yAxis);
View ArticleCreated Unassigned: Legend does not display with multiple plots in tab [10234]
I have a setup generating a series of plots in a Winforms TabControl (3 per page, 4 tabs for a total of 12 plots). When only one plot is present in the tab, the legend displays fine in that plot; once...
View ArticleNew Post: LineSeries always visualize Y value
I can't find a way to have the Y axis value visible, it shows randon values, sometimes min and max, sometimes in between. I've tried to set minimin and maximun but no luck. Any hint? Thank you.
View ArticleNew Post: LineSeries always visualize Y value
I've actually proposed that this be implemented for axes in general here. If you require it immediately though it shouldn't be too hard to extend your own axis and override paint to always print out...
View ArticleNew Post: LineSeries always visualize Y value
Yep good advice, I will try to override it. Thanks for your help and I agree, your proposal should be implemented.
View ArticleNew Post: Always show two tick labels on y axis
Is it possible to force at least two tick labels on a linear y axis? My plot has limited height and sometimes it will only show one major tick. In that scenario it is impossible to determine the value...
View ArticleNew Post: LineSeries always visualize Y value
I actually came up with a different solutions but I am not sure if it works with any value: First I calculate the Maximun and Minimun and set them in the axe, then I set the MajorStep = MAximun -...
View ArticleNew Post: Drag & Drop
I don't know why the image can't display! but you can click the link to look at it. Can These images help understand my ideas?
View ArticleNew Post: Auto Pan Oxyplot DateTimeAxis
This is a continuation of the question posted here: Auto-scroll/pan for real-time data. While the posted example appears to work for a LinearAxis, it doesn't work for a DateTimeAxis. The pan steps are...
View ArticleNew Post: Oxyplot Xamarin.Forms Version
Hi, just found about OxyPlot and it looks really amazing, i have to say i didn't tried yet, but it looks a great open source tool for lob apps. So Xamarin has this new platform that is Xamarin.Forms,...
View ArticleNew Post: Lineseries.Color bug, help
Hi all, thanks for the library! I wanna keep the color patter of creating the new line while getting the color of the line plotted. But this:...
View ArticleNew Post: Rectangle Annotation Problem
Hi, it's me again^^ I have a problem with the Rectangle Annotation. I need 2 annotations for my plot. I get this done, but one of my annotations is going endlessly in the y-axis although i've set an...
View ArticleNew Post: Lineseries.Color bug, help
You're using extensions wrong, might want to look into them more =P. Try just doing tmpLine.Color.ToColor();
View ArticleNew Post: Adding multiple instances of a LineSeries to OxyPlot
Hello, I am trying to add multiple LineSeries to my OxyPlot graph. I am using WPF so I decided to switch to OxyPlot. I am not used to the way OxyPlot works as I am used to using Winforms chart controls...
View ArticleNew Post: Drag & Drop
Using imgur.com instead of SkyDrive might help, but anyway this sounds like something that is out of scope for OxyPlot to provide, as drag and drop functionality is on the Frame level if I recall...
View ArticleNew Post: Always show two tick labels on y axis
Hey! I've actually proposed this here and talked about how to implement it a bit here. Maybe these will help a bit. I'm sure whenever Objo comes around again he'll add some feedback too, he hasn't been...
View ArticleNew Post: Always show two tick labels on y axis
Your proposal would solve my problem indeed, thanks for the reply.
View ArticleNew Post: Lineseries.Color bug, help
Every time the tmpLine.Color will always give me {#00000001} while the actual color is not. I've tried changing my code to This:foreach (Plot plotItem in _plots) { var tmpLine = new LineSeries();...
View Article