New Post: Adding OxyImage in model
I want to add a bitmap image to the plot. I have a bitmapimage, which I made from a matrix. I want to know how to add this image to oxyplot? I made scatterseries , but it got too slow. I made a...
View ArticleNew Post: Inserting a bitmap into axes
I need to be able to use oxyplot axes, but insert a bitmap that I have already drawn into the graph rather than any other series. This is because the oxyplot axes work perfectly but without drawing the...
View ArticleNew Post: Inserting a bitmap into axes
Have you tried with the image annotation ? It sounds to fit with your problem.
View ArticleNew Post: Scatter Series and Date Time axis
Is it possible to use a scatter series with a dateTime axis?
View ArticleNew Post: Inserting a bitmap into axes
There is an official example here : http://www.oxyplot.org/examplebrowser (in the annotation category). Here is the source code (from oxyplot) :[Example("ImageAnnotations")] public static PlotModel...
View ArticleNew Post: Inserting a bitmap into axes
Thanks very much, this is definitely what I was looking for. How do I get load a locally saved image (bitmap) into the OxyImage then?
View ArticleNew 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 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 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 Article