Unnecessary white space coming between the maps

Hello Helical Insight Team,
I am using Helical Insight EE 4.0 GA. We need to create two maps in parallel without space in middle but its showing white line after map which creates a space between map.

You can refer below image to see the white space
image

Thank You,
Jam.

Hello Jam,

The map has been designed to have some margin between the boundary and where the map is present. You can inspect and see that the map container is only 97% of the outer container and that’s why you see some gap. Via CSS you can very simply reduce the gap.

In order to avoid that you can manually ride that using the below kind of CSS. The id will change based on the chartid in your case.

#chart-q4ftc4059jg
{
width: 100% !important;
height: 100% !important;
}

Thank You,
Helical Insight.