Created Unassigned: Area plot tracker does not work on lower boundary [10065]
Hi,Tracker in the area plot is unable to pick any point on the lower boundary of the graph. It only picks and tracks the upper boundary.Is there any workaround / parameters which I need to tweak?...
View ArticleNew Post: Tracker custom precision
Hi, I wanted to round off the double precision displayed in the tracker X and Y values .. using some custom rounding values. Is it possible to do with the current tracker? Thanks
View ArticleNew Post: Tracker custom precision
See Tracker Examples<oxy:Plot.DefaultTrackerTemplate> <ControlTemplate> <oxy:TrackerControl Position="{Binding Position}" BorderThickness="2" BorderBrush="LightSteelBlue"...
View ArticleNew Post: Steps with LogarithmicAxis
I don't think it's possible right now. You should modify the GetTickValues method inside the LogarithmicAxis.cs file (particularly majorTickValues list). Please post the solution if you find out how to...
View ArticleNew Post: Tracker custom precision
Hi everytimer.. Thanks for the example. I have seen it but I don't think its dynamically possible to change the precision with it? StringFormat='{}{0:0.000}'
View ArticleNew Post: Tracker custom precision
I think you should create a custom Series derived from LineSeries with the TrackerFormatString property exposed. See MatrixSeries.cs. Good luck
View ArticleNew Post: Tracker custom precision
Just put StringFormat='{}{0:0.0}' for only one decimal for example. If you want more explanation about double format : http://www.csharp-examples.net/string-format-double/
View ArticleNew Post: Tracker custom precision
Thanks everytimer... That's a good idea, it will work!
View ArticleNew Post: Tracker custom precision
Thanks raphay.. But my query was more towards the binding aspect. cheers.
View ArticleNew Post: WPF performance
Below code is currently set to use OxyPlot.WindowsForms control in a WPF application. Change the XAML to use OxyPlot.WPF for comparison. I was unable to retrieve any insight using either SharpDevelop...
View ArticleNew Post: Disabling Line Tracker (coordinate display)
Hello, Is there any newly implemented feature to disable line tracker for each line series? I have 3 line series and I'd like to display tracker only on one line. Actually, I could find some...
View ArticleNew Post: Disabling Line Tracker (coordinate display)
I believe it's not implemented yet, but we talked about a solution to this problem, in this topic : https://oxyplot.codeplex.com/discussions/449252 I hope this will help you.
View ArticleNew Post: Adding OxyImage in model
I want to add a bitmap image to the plot. I have a bitmapimage, which I made from a matrix. I want to know how to add this image to oxyplot? I made scatterseries , but it got too slow. I made a...
View ArticleNew Post: Inserting a bitmap into axes
I need to be able to use oxyplot axes, but insert a bitmap that I have already drawn into the graph rather than any other series. This is because the oxyplot axes work perfectly but without drawing the...
View ArticleNew Post: Inserting a bitmap into axes
Have you tried with the image annotation ? It sounds to fit with your problem.
View ArticleNew Post: Scatter Series and Date Time axis
Is it possible to use a scatter series with a dateTime axis?
View ArticleNew Post: Inserting a bitmap into axes
There is an official example here : http://www.oxyplot.org/examplebrowser (in the annotation category). Here is the source code (from oxyplot) :[Example("ImageAnnotations")] public static PlotModel...
View ArticleNew Post: Inserting a bitmap into axes
Thanks very much, this is definitely what I was looking for. How do I get load a locally saved image (bitmap) into the OxyImage then?
View ArticleCreated Unassigned: OxyPlot.Wpf.TextAnnotation Layer not synced properly [10066]
Setting the "Layer" property of OxyPlot.Wpf.TextAnnotation does not change the render order of the annotations, because the property is not being synced back to the "InternalAnnotation" in...
View Article