Hello everyone,
I want to show different markers on a bubble map with different colours based on an enum value. Is there any way to make it so that markers on countries that have multiple values do not overlap but get rendered next to each other?
My scattergeo map uses these values for example:
type: scattergeo
locations: [‘FRA’, ‘FRA’, ‘DEU’, ‘RUS’, ‘ESP’] → (I can only use the ISO-3 codes here, no coordinates available)
size: [20, 50, 30, 15, 10]
Currently it looks like this:
But I want to display both french markes next to each other instead of them overlapping
Thank you!