I am trying to show an image in an annotation, in Xamarin Forms. I already tried a lot of different things and i can't get it to show the image... Does anyone have a solution?
Here is what I've tried so far...
Code: Select all
var annotation = new Steema.TeeChart.Tools.Annotation(c);
var image = new Image();
image.Source = "Home-Orange.png";
annotation.Shape.Image = image;
c.Tools.Add(annotation);
In the attachment is a screenshot of what I've got so far... As you can see, it's just a white box that shows
Thanks in advance,