Hi Tiff Napolitano,
Thanks for the using Syncfusion products.
You can achieve this requirement with the help of LabelCreated event in secondary axis and positioning the image using AbsoluteLayout. Please refer the following code snippet for details.
Code Snippet:
|
private void SecondaryAxis_LabelCreated(object sender, ChartAxisLabelEventArgs e)
{
ChartAxis axis = (sender as ChartAxis);
if (axis is NumericalAxis)
{
double y = myChart.ValueToPoint(axis, e.Position);
double x = 5;
image = new Image();
int pos = (int)e.Position % 4;
image.Source = ImageSource.FromFile("icon.png"); // position the required image
secondaryAbsLayout.Children.Add(image, new Rectangle(x, y - 20, 30, 30));
}
}
|
Please download the sample from following location.
Please let us know, if you need further assistance on this.
Regards,
Parthiban S