New Post: Captions Above Datapoints
Hi bigN13, I accomplished this by using TextAnnotations. It's slows the plot down somewhat, but still usable for my purpose.
View ArticleCommented Unassigned: Argument type string [mscorlib] is not assignable to...
Hello! I'm using OxyPlot-NET40-2013.1.38.1, on VS 2010. When I create PlotModel and try to set title either from coinstructor or from property, it throws this error:Argument type 'string [mscorlib,...
View ArticleNew Post: Inserting a bitmap into axes
Use this code :OxyImage image; using (FileStream stream = new FileStream(PathOfYourImage, FileMode.Open)) { image = new OxyImage(stream); }
View ArticleNew Post: Inserting a bitmap into axes
Is It possible to use a System.Drawing.Bitmap? Basically I draw my bitmap, and can save it as a file, but would be quicker if I just used the one stored in memory.Bitmap b = makeBitmap(scatter);
View ArticleNew Post: Inserting a bitmap into axes
Well, i added a bitmapimage, but I cant make it zoom. which property am i missing? thanks a lot
View ArticleNew Post: Inserting a bitmap into axes
willmoore88 wrote: Is It possible to use a System.Drawing.Bitmap? Basically I draw my bitmap, and can save it as a file, but would be quicker if I just used the one stored in memory.Bitmap b =...
View ArticleNew Post: Heatmap with x/y/temperature
Can anyone assist on this, please? I'm looking at the LibrarySamples for HeatMapSeries, but I can't determine what to supply to the data. I have a set of vertexes (elements) as such: example: first row...
View ArticleNew Post: Adding OxyImage in model
well, this part is fine. i will post another issue that i am facing. thanks
View ArticleNew Post: Re-sizing of image in imageannotation
I can display an oxyimage in a plotmodel using imageannotation. There is a weird issue with the image zoom and resize. When I resize the window horizontally, horizontal axes changes values, which is...
View ArticleNew Post: PDFs on Mono
hmm, agreed it would probably be better to move away from iText or PDFSharp. I wound up using a hacked version of pdfsharp described here:...
View ArticleNew Post: VS 2012 SimpleDemo: Plot won't render in WPF XAML Designer at...
I still have the problem: I started to use Oxyplot today for the first time, I downloaded the packages from nuget so its up to date, but I can't open the designer, it crashes. I do have update 3 for my...
View ArticleCreated Unassigned: BarSeries is not working with TimeSpanAxis [10067]
This is an excerpt of the case:// Each item has the "Total" as TimeSpan Property foreach (var item in kronosData.Processes) { var s = kronosData.Stats.Where(x => x.Process == item);...
View ArticleNew Post: HeatMapSeries and Reverse Axis
I'm using the heatmap series, and reversing the Y axis, which represents "True Vertical Depth". However, my heatmap image is not reversed. Should it be, or do I need to reverse the points myself? Michael
View ArticleNew Post: Re-sizing of image in imageannotation
Is it a possible bug?? If I set both width and height of imageannotation, the image is not rendered.
View ArticleNew Post: Problem changing plot padding and axis position in code....
Hello, I got a program that I am using OxyPlot. I need to add Plots dynamically to a StackPanel. My problems are the following. If i define the Plot Padding and Margin, it is not followed. I need to...
View ArticleNew Post: WPF performance
Not sure how much help this is, but I have some results from the WPF Performance Suite (part of Windows SDK). It's not very detailed, but it indicates "Rendering Thread" uses 50% CPU time and "Layout"...
View ArticleNew Post: WPF performance
(Formatting is lacking, just copy the table into notepad.)"Top 20" results from SharpDevelop profiler:Name Call Count Time Spent TS (self) TS (per call) TS (self/call)...
View ArticleNew Post: OxyPlot with dynamic data series
Any advice/tips on plotting one or more dynamic data series efficiently? What types of classes should I consider writing to increase performance? Axis, Series, Rendering contexts, etc.
View ArticleReviewed: OxyPlot binaries (7 31, 2013)
Rated 5 Stars (out of 5) - Excellent job! Tribute to objo.
View ArticleNew Post: OxyPlot with dynamic data series
Here are some tips: https://oxyplot.codeplex.com/wikipage?title=Performance&referringTitle=Documentation
View Article