Hi Team,
I have a requirement to show images left side of the threshold marker dotted line in red. I am getting threshold data in API response and it will change based on the type of data I am showing, I can not use static % value in the annotation.
As of now, I am using the stripline property of primaryYaxis to show the red dotted threshold lines as below, which is dynamic.
stripLines: [
{
start: Number(selectedObservationDetail.ReferenceRange.HighValue),
size: 1,
sizeType: 'Pixel',
dashArray: '2,2',
color: STRIP_LINE_COLOR,
},
{
start: Number(selectedObservationDetail.ReferenceRange.LowValue),
size: 1,
sizeType: 'Pixel',
dashArray: '2,2',
color: STRIP_LINE_COLOR,
},
I have to show images to the left of the same striplines as shown in the above image.
Below is chart data for X and Y axis
data: Object[] = [
{ x: new Date(2020, 6, 1), y: 70, dummy: 'arindam' },
{ x: new Date(2020, 6, 2), y: 75, dummy: 'arindam' },
{ x: new Date(2020, 6, 3), y: 74, dummy: 'arindam' },
{ x: new Date(2020, 6, 4), y: 72, dummy: 'arindam' },
{ x: new Date(2020, 6, 5), y: 80, dummy: 'arindam' },
{ x: new Date(2020, 6, 6), y: 82, dummy: 'arindam' },
{ x: new Date(2020, 6, 7), y: 60, dummy: 'arindam' },
];
Please suggest me a way to achieve this with Syncfusion chart component.
Let me know if any further information is required. It will be a great help if you can share some examples.