New Post: Point selection on Line series?
Hi, First of all, thank you very much for this great chart library. I'm having a problem while attempting to change the color of the selected marker in a line series. Is this possible at all, or it is...
View ArticleCreated Unassigned: OutOfMemoryException when LineSeries.Smooth=true [10227]
Refer to discussion:Wiki Link: [discussion:550416]
View ArticleEdited Unassigned: OutOfMemoryException when LineSeries.Smooth=true [10227]
Refer to discussion:Wiki Link: [discussion:550416]Exception at : CanonicalSplineHelper.Segment(). Line207.How to reproduce this: 1. Set lineSeries.Smooth = true when create lineSeries. eg: var ls = new...
View ArticleNew Post: Point selection on Line series?
After tracing it back through the source, it does seem to flag the item properly (all the way back in Selection.cs). Are you refreshing the plot after you select the item? (InvalidatePlot(false) on the...
View ArticleNew Post: Point selection on Line series?
Yes, the model get invalidated (the lines of code I've added are from on of the examples). If you see that the flag set properly. then, or it is ignored, or the color is overwritten when the line...
View ArticleCommented Feature: Improve tracker style (Windows Forms) [10125]
Currently it is implemented as a simple label. Should be improved:- move it away so the mouse cursor does not obscure it- add padding- add border- make colors (text, border, background) customizable-...
View ArticleNew Post: Point selection on Line series?
Well when it's the Selection object itself then it just has a boolean flag, but when it's a point in it, the Selection object has an array of bools that it flags with the index given to it. (Source...
View ArticleNew Post: How to copy a plot in WindowsForms ?
Here's how I'm handling it: PlotController.BindKeyDown(OxyKey.C, OxyModifierKeys.Control, new DelegatePlotCommand<OxyKeyEventArgs>( CopyChart_OnKeyDown)); privatevoid CopyChart_OnKeyDown(...
View ArticleNew Post: How to copy a plot in WindowsForms ?
Thanks to you. you answer is right and my problem has solved.
View ArticleNew Post: How to copy a plot in WindowsForms ?
Slxe wrote: Here's how I'm handling it: PlotController.BindKeyDown(OxyKey.C, OxyModifierKeys.Control, new DelegatePlotCommand<OxyKeyEventArgs>( CopyChart_OnKeyDown)); privatevoid...
View ArticleNew Post: LegendSymbolZoom property is possibly required when rendering...
As stated in this subject‘s title, there's lots of complains that symbols in legend are too hard to be recognized if MarkerSize is defined too small. By providing LegendSymbolZoom property in PlotModel...
View ArticleNew Post: Using DateTimeIntervalType.Manual
I want to be able to specify my DateTime labels specific to my date, so it seems the DateTypeIntervalType Manual is perfect for that. However, I can't find documentation as to how to use it. My graphs...
View ArticleNew Post: DateTime Label Formatter over 2 lines
My client wants the date time formatted on the Labels to be formatted with the date above the time, like this: 07/06 10:00 am I have been unable to determine how to a) get it broken onto 2 lines, and...
View ArticleUpdated Wiki: Home
Project DescriptionOxyPlot is a cross-platform plotting library for .NET.For examples, see the Silverlight Example BrowserThe documentation is located at oxyplot.org (under construction, please...
View ArticleNew Post: Printing in WPF with XPS/PrintVisual
Hi, I also try to print graph as same way. But I couldn't it even if I call UpdateLayout(). When I create instance of user control on memory empty page is printed out. But I throw showing visual object...
View ArticleNew Post: Change axis textcolor in OxyPlot for WPF
Hi, I have one question. How is it possible to change color of axis text color in WPF? In OxyPlot.dll you have Axis.TextColor property which comes from OxyPlot.PlotElement class. But in OxyPlot.Wpf.dll...
View ArticleNew Post: System.InvalidOperationException - OnKeyDown
Hi All, I'm plotting real time data using OxyPlot, everything seems to be working great apart of the exception in 'PlotModel.ResetAllAxes' method. The exceptions occurs each time I press 'a' key when...
View ArticleNew Post: Printing in WPF with XPS/PrintVisual
If you are using the latest version of OxyPlot it wont work. I updated to the latest version some time ago, and the above code stopped working. I downgraded to version "2014.1.231.1" and it works with...
View ArticleNew Post: Tooltips for annotations
Thanks for the Sample! I build myself a PointAnnotation with tooltips enabled out of that: With default ShapesRenderContext tooltip text only applies to text and images. public class...
View ArticleNew Post: Printing in WPF with XPS/PrintVisual
Thank you for your great information! When I try to use 2014.1.231.1 from NuGet it works fine. I checked changing point roughly. Cause is probably in InvalidatePlot() (Plot.cs or PlotView.cs). From...
View Article