follow_me,
1. у вас старая версия 1.4.4
2. вы дважды грузите одно и тоже amcharts.js
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
.showhide{
cursor: pointer;
}
.showhide + div{
display:none;
}
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
$(function ()
{
$('.showhide').click(function () {
$(this).next('div').slideToggle()
});
})
</script>
</head>
<body>
<div class="showhide">Показать/скрыть 1</div>
<div class="chartdiv">
<div id="chartdiv" style="width: 100%; height: 400px; background-color: #282828;" ></div>
</div>
<div class="showhide">Показать/скрыть 2</div>
<div class="chartdiv1">
<div id="chartdiv1" style="width: 100%; height: 400px; background-color: #282828;" ></div>
</div>
</body>
</html>