Search code examples
javascriptcssjvectormap

Change the JVectorMap legend position


I need to change the position of JVectorMap legend box.

Anybody know how to change legend box to left botton position?

Regards


Solution

  • I solved this problem using CSS styles.

    .jvectormap-legend-cnt-v{
        bottom: 0;
        left: 0;
        right: auto;
        top: auto;
    }
    

    And

    .jvectormap-legend-cnt-h{
       left: 0;
       right: auto;
    }