<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ZingSoft Demo</title>
<script nonce="undefined" src="https://cdn.zingchart.com/dev/zingchart.min.js"></script>
<style></style>
</head>
<body>
<div id='myChart'></div>
<script>
zingchart.loadModules('maps, maps-mar', function(e) {
zingchart.render({
id: 'myChart',
data: {
shapes: [{
type: 'zingchart.maps',
options: {
name: 'mar'
}
}]
},
height: 400,
width: '100%'
});
});
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ZingSoft Demo</title>
<script src="https://cdn.zingchart.com/dev/zingchart.min.js"></script>
</head>
<body>
<div id='myChart'></div>
</body>
</html>
zingchart.loadModules('maps, maps-mar', function(e) {
zingchart.render({
id: 'myChart',
data: {
shapes: [{
type: 'zingchart.maps',
options: {
name: 'mar'
}
}]
},
height: 400,
width: '100%'
});
});