我正在使用版本4中的AmCharts(地图)。 放大图表时,会出现滚动条(用于x和y轴)。
我需要为IE使用一些polyfill吗?
这是我当前的代码:main.html
'/snap/bin/pdftk %s fill_form %s output %s %s'
main.css
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Minimum Example</title>
<script src="https://www.amcharts.com/lib/4/core.js"></script>
<script src="https://www.amcharts.com/lib/4/maps.js"></script>
<script src="https://www.amcharts.com/lib/4/geodata/worldLow.js"></script>
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<button id="us-button">Zoom to US</button>
<br />
<button id="br-button">Zoom to BR</button>
<div id="chartdiv"></div>
<script src="./main.js"></script>
</body>
</html>
main.js
@import url("https://fonts.googleapis.com/css?family=Archivo+Narrow");
body {
font-family: "Archivo Narrow";
}
#chartdiv {
width: 100%;
height: 350px;
}
要复制我的问题,请使用Internet Explorer 11并打开index.html 然后放大一个国家,然后查看滚动条如何随缩放级别增加。