Hi,
I’m trying to add a small image as an annotation to the chart, but I couldn’t make it work… most likely doing something wrong, but I can’t quite figure out how this should be done. This is the direction I went for:
public void AddIcon()
{
Image image = new Image();
BitmapImage icon= new BitmapImage();
icon.UriSource = new Uri(@"D:\icon.png", UriKind.Absolute);
image.Source = icon;
var annotation = new CustomAnnotation()
{
X1 = 0,
Y1 = 0,
Content = image,
};
ChartAnnotations.Add(annotation);
}
What am I doing wrong? is there a proper and simple way to add image annotations to the chart in an MVVM manner?
Thank you!
- Ilan Rozen asked 4 years ago
- last active 1 year ago