New 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 Comment on "Custom trackers"
This might help: <oxy:Plot x:Name="oxyPlot" Model="{Binding OxyPlotModel}" > <oxy:Plot.DefaultTrackerTemplate> <ControlTemplate> <oxy:TrackerControl Position="{Binding Position}"...
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 ArticleCreated Unassigned: Error Linking OxyPlot assembly in Xamarin iOS app [10243]
Hi,I have used OxyPlot library to display few graphs in my iOS app which is developed in Xamarin.When I am trying to build a package for releasing on app store, I am getting following exceptionError...
View ArticleCommented Unassigned: Getting a "Could not load file or assembly 'System.core...
I'm currently having a problem when creating an app using OxyPlot version v4.0.30319 and it is executed on a non-developer machine. The application is running fine, but when a window is shown with...
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 ArticleCommented Feature: Support for selection [8193]
Selectable objects:- Series- Items of DataPointSeries- Axes- Annotations- Title/Subtitle- Legend boxShould support both single or multiple selectionHighlighting:Clicking on a series or a legend should...
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