0

On Google Chrome, printing a Highmap makes it resize and stick to the left. But the map won't take its initial shape after printing. See this Fiddle : http://jsfiddle.net/5u6z7csf/1/

The code is very basic :

$(function () { $.getJSON('http://www.highcharts.com/samples/data/jsonp.php?filename=germany.geo.json&callback=?', function (geojson) {

    var data = Highcharts.geojson(geojson, 'map');
    $('#container').highcharts('Map', {
        series: [{
            data: data
        }]
    });
});

I tested it on IE and Firefox and it works fine using them.

Is there a way to walk around this problem ?

Arthur Ouaki
  • 98
  • 1
  • 4

1 Answers1

0

Thank you for the reporting, it is requested here

Sebastian Bochan
  • 37,348
  • 3
  • 49
  • 75