New Post: Formatting the Tracker control
@avada Thanks for providing your solution, but note - this forum is no more in use, you should use http://discussion.oxyplot.org/ I find everytimer's comment to be quite helpful - it is always a good...
View ArticleNew Post: Formatting the Tracker control
Hi objo, Thank you for the heads up about this forum being outdated! Still, I hope that since I found the question here the response might still be useful. Regarding the previous comment, I read it as:...
View ArticleNew Post: I keep getting a crash in ListFiller:Fill
ConcurrentQueue !! Thank you!! it works perfectly!!
View ArticleNew Post: OxyPlot paint Exception : XAxis not defined
I had this problem and found that adding Model.InvalidatePlot(bool) after the code which was clearing old line-series from the plot model did the trick. Thanks!
View ArticleNew Post: InvalidatePlot ... knowing when Rendering is completed. WPF...
I have a plot with a large number of points (>300000) and when I call, PlotView.InvalidatePlot(true), it takes a while to render. This is acceptable but I would like to put up an hourglass or some...
View ArticleNew Post: InvalidatePlot ... knowing when Rendering is completed. WPF...
@csharpuser Note that this project has been moved to GitHub. Please add the feature request at the issues section there, or post in the discussion forum! Cheers!
View ArticleNew Post: WPF version mouse down cannot fire if invalidatePlot in...
Was a solution for this ever found? I'm seeing the same problem.
View ArticleNew Post: Auto-scroll/pan for real-time data
Here's how I did it - this code is used when a new datapoint is added:const int DefaultChartSpanInSeconds = 5; var xAxis = _plotModel.Axes.First(); var currentMax = xAxis.DataMaximum; var now =...
View ArticleNew Post: How to PAN automatically while adding huge amount of data in Oxyplot
Created a thread in StackoverflowStackoverflow
View ArticleNew Post: Polar chart question
Hi. I'm trying to achieve the same thing without the arrows but my main problem is that the series don't start in the center of the chart. Can you help me?
View ArticleNew Post: Polar chart question
Thank you for your prompt response. Yes I have. I'm using C# and WPF. I'm only testing right now but this is my code:<oxy:Plot Title="Cohesión Intragrupo" Name="chartcintra" PlotType="Polar"...
View ArticleNew Post: Polar chart question
In the following link you can find the link of the resulting chart: https://www.dropbox.com/s/oqruxmo25nuejfj/PolarChart.png?dl=0
View ArticleNew Post: Polar chart question
Hi Can you draw in Paint for example the result you want?
View ArticleNew Post: Polar chart question
I want the same result of this initial thread but without the arrows: My main problem is that each line don't start from the center. In my understanding, if I use this type of chart, I can be able of...
View ArticleNew Post: Polar chart question
Something like this:https://www.dropbox.com/s/8jqiv3c326ifiea/PolarChartPaint.png?dl=0
View ArticleNew Post: Polar chart question
Hi First you need to make your own class. Derive it from XYAxisSeries. You also need this: public override void Render(IRenderContext rc, PlotModel model) { // transform to screen coordinates var p0 =...
View ArticleNew Post: Polar chart question
Thank you Sam. I already tried but is not adding the line into the plot. What do you think is happening?
View Article