New Post: WPF LineSegmentSeries
Is the LineSegmentSeries available in the WPF? Can't find it. MDJ
View ArticleNew 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 ArticleNew 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 ArticleNew Post: WPF LineSegmentSeries
It's a custom class created directly in ExampleLibrary Solution. Specifically LineSegmentSeries.cs. Good luck
View ArticleNew 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 ArticleNew 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 ArticleNew 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 ArticleNew 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 ArticleNew 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 ArticleNew Post: Tracker custom precision
Hi, I wanted to round off the double precision displayed in the tracker X and Y values .. using some custom rounding values. Is it possible to do with the current tracker? Thanks
View ArticleNew Post: Tracker custom precision
See Tracker Examples<oxy:Plot.DefaultTrackerTemplate> <ControlTemplate> <oxy:TrackerControl Position="{Binding Position}" BorderThickness="2" BorderBrush="LightSteelBlue"...
View ArticleNew Post: Steps with LogarithmicAxis
I don't think it's possible right now. You should modify the GetTickValues method inside the LogarithmicAxis.cs file (particularly majorTickValues list). Please post the solution if you find out how to...
View ArticleNew Post: Tracker custom precision
Hi everytimer.. Thanks for the example. I have seen it but I don't think its dynamically possible to change the precision with it? StringFormat='{}{0:0.000}'
View ArticleNew Post: Tracker custom precision
I think you should create a custom Series derived from LineSeries with the TrackerFormatString property exposed. See MatrixSeries.cs. Good luck
View ArticleNew Post: Tracker custom precision
Just put StringFormat='{}{0:0.0}' for only one decimal for example. If you want more explanation about double format : http://www.csharp-examples.net/string-format-double/
View ArticleNew Post: Tracker custom precision
Thanks everytimer... That's a good idea, it will work!
View ArticleNew Post: Tracker custom precision
Thanks raphay.. But my query was more towards the binding aspect. cheers.
View ArticleNew Post: WPF performance
Below code is currently set to use OxyPlot.WindowsForms control in a WPF application. Change the XAML to use OxyPlot.WPF for comparison. I was unable to retrieve any insight using either SharpDevelop...
View ArticleNew Post: Disabling Line Tracker (coordinate display)
Hello, Is there any newly implemented feature to disable line tracker for each line series? I have 3 line series and I'd like to display tracker only on one line. Actually, I could find some...
View ArticleNew Post: Disabling Line Tracker (coordinate display)
I believe it's not implemented yet, but we talked about a solution to this problem, in this topic : https://oxyplot.codeplex.com/discussions/449252 I hope this will help you.
View Article