New Post: line annotation does not work with y-axis set to my own custom axis
Hi objo, I create a custom axis (derived from Axis), and overrides below methods: 1) GetTickValues 2) IsValidValue 3) IsXyAxis 4) Transform the custom axis appear to work well on the plot as axis Y...
View ArticleNew Post: How to Create HighLowSeries/CandlestickSeries
Sorry, these series are not included in the OxyPlot.Wpf namespace yet. This is issue 9999.https://oxyplot.codeplex.com/workitem/9999
View ArticleNew Post: [Example("LineSeries and PlotModel MouseDown event")] in WPF?
It should work exactly the same way in WPF, check the example in the WPF example browser.
View ArticleCommented Issue: Add XAML support for all series classes [9999]
In OxyPlot.Wpf, add XAML support for all types of series. Include all properties.Comments: Hi, for a project using OxyPlot.WPF I needed to add the StairStepSeries XAML wrapper. I attached the file,...
View ArticleCreated Unassigned: Tracker wrong for logarithmic y-axis when y-value is 0...
Plot has logarithmic y-axis and linear x-axis. The graph is not showing points where y=0, but shows the rest of the points where y=1, which is ok. But the tracker shows wrong data, when pointing on 1st...
View ArticleNew Post: line annotation does not work with y-axis set to my own custom axis
I have found the reason why the line annotation wasnt rendered however the fix is still something that I will research further later as I need to move on to other thing now. Will post the code changes...
View ArticleReviewed: OxyPlot binaries (Jun 15, 2013)
Rated 5 Stars (out of 5) - Just fantastic, I was about to try and fudge matplotlib when I found this, so glad I did, far superior!
View ArticleNew Post: Rendering performance when plotting multi lineseries with high fps
In my project, there are 500 groups of data per second, each group contains 5000 points( type is double). I let plotter control to render 25 groups of data per frame, and render them 20 times(500/25)...
View ArticleNew Post: Adding one line to another, is this possible?
__First and the most important:__GREAT library. Thank you. Does OxyPlot support addition/subtraction/division/multiplication of line graphs? Say I have two series that have different X spacing, I can't...
View ArticleNew Post: ArrowAnnotation text position
Hi, Is it possible to adjust the orientation and position of ArrowAnnotation's Text like that of LineAnnotation. My horizontal ArrowAnnotation's text cannot be seen as it starts from X=0 and the text...
View ArticleNew Post: Panning error in Log axis with Absolute Min/Max
Dears, I found one issue when it applies Log axis with Absolute Min/Max values, Panning should be blocked with those absolute values, but when I tried the panning, the chart showed wrong range of...
View ArticleSource code checked in, #c6c051c44269
LogarithmicAxis corrected bug related to the AbsoluteMaximum property [discussion:447313]
View ArticleNew Post: Panning error in Log axis with Absolute Min/Max
Thanks for reporting the bug! I think the correct code should benewMinimum = newMaximum * this.ActualMinimum / this.ActualMaximum; I am submitting the updated source code now. I have also included an...
View ArticleCreated Unassigned: ArrowAnnotation: support text orientation [10057]
Add a `TextOrientation` property, as in LineAnnotation.See [discussion 447224](https://oxyplot.codeplex.com/discussions/447224)
View ArticleNew Post: ArrowAnnotation text position
Currently the ArrowAnnotation only support horizontal text. I have added the issue https://oxyplot.codeplex.com/workitem/10057
View ArticleNew Post: Adding one line to another, is this possible?
Stacking is supported for BarSeries (that use category axes) but not for LineSeries and AreaSeries. The easiest solution now would be to do the interpolation/extrapolation inside your application, this...
View ArticleNew Post: Rendering performance when plotting multi lineseries with high fps
See https://oxyplot.codeplex.com/wikipage?title=Performance&referringTitle=Documentation Turn off markers, axis grid lines, smoothing. Do not use ItemsSource (binding is slow). 125000 points at...
View ArticleCommented Unassigned: Tracker wrong for logarithmic y-axis when y-value is 0...
Plot has logarithmic y-axis and linear x-axis. The graph is not showing points where y=0, but shows the rest of the points where y=1, which is ok. But the tracker shows wrong data, when pointing on 1st...
View ArticleEdited Unassigned: Hit testing LineSeries with smoothing [10055]
hit testing should interpolate transformed points, like the rendering doesAlso change the UpdateMaxMin:- transform the points- interpolate- inverse transform min/max pointssee...
View Article