Quantcast
Channel: OxyPlot (moved to GitHub)
Browsing all 2061 articles
Browse latest View live
↧

New Post: LineAnnotation on multy Axes

There are many elements of the Axis, we must somehow specify the element LineAnnotation what used to work the same way as is done in LineSeries:<oxy:LineSeries ItemsSource="{Binding Items}"...

View Article


New Post: WPF performance

I've noticed the same thing. I am displaying different charts in WPF with OxyPlot, and the performance is not great (i.e. panning, zooming, and tracking). Some of the charts have as few as a dozen or...

View Article


New Post: LineAnnotation on multy Axes

You should use a Plotmodel from the OxyPlot Core library. Indeed some element in the WPF library are not finished yet (Annotation don't have axis key in this library, but they have in the core...

View Article

New Post: How can I draw a line series against the Y axis?

I need to plot a graph like this one, against the Y axis.http://www.intechopen.com/source/html/16221/media/image7.png Any ideas?

View Article

New Post: How can I draw a line series against the Y axis?

What's the problem? Just provide the right List<DataPoint> and you're done. If you already have the data in the "normal" format run a loop like this:foreach (DataPoint p in myList1) {...

View Article


New Post: WPF performance

I think it's a problem with WPF itself.

View Article

New Post: WPF performance

It might be, but my test tries to use the objects using code rather than XAML/binding. The test application itself is WPF. The difference I'm noticing is in using the WPF version of OxyPlot vs the...

View Article

New Post: PDFs on Mono

Note that iText is licensed under AGPL. See the license terms. I would like to see the following changes rather than spending time on iTextSharp and PDFSharpchange OxyPlot text rendering so text...

View Article


New Post: WPF performance

Can you profile your application to see if the time is spent in your application, the OxyPlot library or in the WPF core? I have also noticed that other platforms are performing much better than WPF....

View Article


New Post: Disable Tracker

I solved the issue using another workaround:<Metro:Plot IsHitTestVisible="False" ... />

View Article

New Post: WPF performance

I have since gone ahead using a hosted WF OxyPlot. Seems I'll need a wrapper around it so that resizing will work properly. I'll try putting together a test app once I have time and have a better idea...

View Article

New Post: WPF LineSegmentSeries

Is the LineSegmentSeries available in the WPF? Can't find it. MDJ

View Article

New Post: LabelFormatString to display other values other than x/y coordinates

I'm plotting points on WPF OxyPlot based on a defined set of point indexes. For example, I have a file containing two sections: Section 1 (x, y, width, temperature) 0.00000 8008.00000 303.89111 2.07055...

View Article


New Post: LabelFormatString to display other values other than x/y coordinates

Is it for the tracker? If it's so you can use "Tag" property of LineSeries and bind it in XAML. See Tracker examples. Good luck

View Article

New Post: WPF LineSegmentSeries

It's a custom class created directly in ExampleLibrary Solution. Specifically LineSegmentSeries.cs. Good luck

View Article


New Post: MatrixSeries custom color for each value

I need to modify the MatrixSeries class for being able to select a color for each value, or at least for each cell. Does anyone know how to do that? Thanks

View Article

New Post: MatrixSeries custom color for each value

Ok, OxyPlot is pretty awesome once again. It was pretty simple, you just need to change one line of code: if (this.image == null) { var pixels = new OxyColor[m, n]; for (int i = 0; i < m; i++) { for...

View Article


New Post: LabelFormatString to display other values other than x/y coordinates

Thanks for the reply. Actually, it's NOT for the Tracker. I need to show the Index number for each vertex, AND, hopefully bind it's visibility in XAML to allow user to show/hide it. If that's not...

View Article

New Post: LabelFormatString to display other values other than x/y coordinates

Then why you just do something like this:for(int i=0; i<s2.Points.Count(); i++) { s1.Points.Add(new DataPoint(myList1X[i],myListY[i] ); s1.LabelFormatString = (s2.Points[i].X, s2.Points[i].Y) }...

View Article

New Post: Click the LineSeries' title and get the response?

Dears, I draw three lines on a graph, and I want to handle one of them by clicking its title, such as clearing the line? how can i accomplish this? thanks.!

View Article
Browsing all 2061 articles
Browse latest View live