New Post: Is it possible to set your own interval on a logarithmic scale?
I don't understand completely your question, but at first glance: won't it be enough for you to set the Maximum/Minimum of the axis? LogarithmicAxis axis1 = new LogarithmicAxis(); axis1.Position =...
View ArticleCommented Issue: Example browser is not working (403) [9949]
I have tried to access the example browser at www.objo.net/oxyplot/ExampleBrowser for a few days. It just displays the following error:Server Error403 - Forbidden: Access is denied.You do not have...
View ArticleCommented Issue: Example browser is not working (403) [9949]
I have tried to access the example browser at www.objo.net/oxyplot/ExampleBrowser for a few days. It just displays the following error:Server Error403 - Forbidden: Access is denied.You do not have...
View ArticleNew Post: Way to change text on linear Axis?
I don't see an easy solution for that. If you really need that behavior consider changing the source code and exposing the ticks list. I think you could access it that way. Good luck
View ArticleNew Post: Way to change text on linear Axis?
Nuts, thought that was the case but wanted to bounce it off someone more knowledgeable first, thanks for the response! Will start digging in to the ticks list.
View ArticleCommented Issue: Example browser is not working (403) [9949]
I have tried to access the example browser at www.objo.net/oxyplot/ExampleBrowser for a few days. It just displays the following error:Server Error403 - Forbidden: Access is denied.You do not have...
View ArticleUpdated Wiki: Home
Project DescriptionOxyPlot is an open source, cross-platform .NET plotting library.ExamplesSee the Silverlight Example BrowserNuGet packages (updated at every code check-in) WPF...
View ArticleUpdated Wiki: Home
Project DescriptionOxyPlot is an open source, cross-platform .NET plotting library.ExamplesSee the Silverlight Example BrowserNuGet packages (updated at every code check-in) WPF...
View ArticleUpdated Wiki: Home
Project DescriptionOxyPlot is an open source, cross-platform .NET plotting library.ExamplesSee the Silverlight Example BrowserNuGet packages (updated at every code check-in) WPF...
View ArticleNew Post: Multiple axes
I want to display two graphs, the X-axis have a common Y-axis are different. They need to be displayed in different areas, ie to a schedule does not run into the other. When I refinable or scroll one...
View ArticleNew Post: Set position
As you can set positioning in the charts? For example I have the X-axis date-time, I want to point out is the date on H-time, how do? And put on this place a vertical line. With the positioning of the...
View ArticleNew Post: Multiple axes
So, I was able to bring several mutually dependent areas.<oxy:Plot Grid.Row="1" Model="{Binding ModelPower}" > <oxy:Plot.Axes> <oxy:LinearAxis Position="Left" Title="Power"...
View ArticleNew Post: Stackable LineSeries. Is it possible?
Hi, I was wondering if it is possible to stack line series, to get something like this: I've been looking in the examples, but didn't find any similar... Thank you
View ArticleNew Post: Stackable LineSeries. Is it possible?
If the LineSeries have the same X spacing you could create a new one and run a "foreach (DataPoint point in ...)" loop, adding the previous LineSeries to the current. If that is not enough and you want...
View ArticleNew Post: Stackable LineSeries. Is it possible?
Thanks, your AreaSeries solution was exactly what I was looking for.public IEnumerable<AreaSeries> StackLineSeries(IList<LineSeries> series) { double[] total = new...
View ArticleCommented Unassigned: ArrowAnnotation: support text orientation [10057]
Add a `TextOrientation` property, as in LineAnnotation.See [discussion 447224](https://oxyplot.codeplex.com/discussions/447224)Comments: I think it is not only TextOrientation, but TextPosition too...
View ArticleNew Post: WPF performance
I would like to use OxyPlot in a WPF application, but appear to be encountering a performance issue. I have 8 plots in a scroll viewer, ~4 onscreen at a time. The plots are initialized and configured...
View ArticleNew Post: Mixed from BarSeries and LineSeries
Can I make on one area to create a bar graph and a line graph, so that the line graph does not really matter indices (as in the example), but the values (for example: the Count - Y and Date - X), but...
View ArticleNew Post: PDFs on Mono
Hi, I wanted to run by/suggest some ideas for getting oxyplot to work on mono. Right now, the PDF generation fails in mono because PDFSharp uses the User32.dll file to get some binary information to...
View ArticleNew Post: Mixed from BarSeries and LineSeries
I never got to do it with a bar-graph. I have used in place of a regular bar graph, line graph.
View Article