Interactive Boundary Diagram in Quicksight

Please let me know how to achieve the attached Interactive Boundary diagram in Quicksight

Need to get the above mentioned image in Quicksight.

Is it achievable ? if so how?

You can use the image in quicksight.

Besides that, if you want to have interactive features you might be able to do something like this

This is a free form sheet where we overlayed a scatter plot over an image. You could do the same thing here. From here you can click on the dots in the scatter plot and use interactive features.

We hard coded the x and y axis of the dots.

Here is an example of the x-axis.

ifelse(

{stationname-1}=‘Harlem-Lake’,1,

{stationname-1}=‘Oak Park-Lake’,2,

{stationname-1}=‘Ridgeland’,3,

{stationname-1}=‘Austin-Lake’,4,

{stationname-1}=‘Central-Lake’,5,…etc)

You would separately make one for the y-axis.

Let me know if this helps