#6913

HTML

<script type="text/javascript" src="http://www.amcharts.com/lib/3/amcharts.js"></script>
<script type="text/javascript" src="http://www.amcharts.com/lib/3/serial.js"></script>
<script type="text/javascript" src="http://www.amcharts.com/lib/3/themes/none.js"></script>
<div id="chartdiv"></div>

CSS

#chartdiv {
	width		: 100%;
	height		: 500px;
	font-size	: 11px;
}

JavaScript

var chart;

var chartData_stimmen = [
	{ "partei": "CDU", "stimmen": 24.9, "anzahl": "104 146", "ballontext": "CDU", "color": "#000080"},
	{ "partei": "SPD", "stimmen": 23.1, "anzahl": " 96 542", "ballontext": "SPD", "color": "#FB1100"},
	{ "partei": "DIE LINKE", "stimmen": 17.3, "anzahl": " 72 480", "ballontext": "DIE LINKE", "color": "#F458F0"},
	{ "partei": "GRÜNE", "stimmen": 8.5, "anzahl": " 35 444", "ballontext": "GRÜNE", "color": "#06E000"},
	{ "partei": "NPD", "stimmen": 6.1, "anzahl": " 25 378", "ballontext": "NPD", "color": "#7D3000"},
	{ "partei": "FDP", "stimmen": 5.0, "anzahl": " 20 906", "ballontext": "FDP", "color": "#F0F010"},
	{ "partei": "AB gegen WK- Ausbau", "stimmen": 2.9, "anzahl": " 12 125", "ballontext": "AB gegen WK- Ausbau", "color": "#FFFFF0"},
	{ "partei": "AfD", "stimmen": 2.4, "anzahl": "  9 898", "ballontext": "AfD", "color": "#0197D0"},
	{ "partei": "Freie Wähler MSP", "stimmen": 2.7, "anzahl": " 11 468", "ballontext": "Freie Wähler MSP", "color": "#FFFFF0"},
	{ "partei": "PIRATEN", "stimmen": 1.8, "anzahl": "  7 655", "ballontext": "PIRATEN", "color": "#F08000"},
	{ "partei": "WGLR", "stimmen": 1.3, "anzahl": "  5 605", "ballontext": "WGLR", "color": "#BFF480"},
	{ "partei": "EB Grund", "stimmen": 1.1, "anzahl": "  4 730", "ballontext": "Grund, Andreas", "color": "#AFAEB0"},
	{ "partei": "EB Hoffmann", "stimmen": 0.0, "anzahl": "     94", "ballontext": "Hoffmann, Hans-Ullrich", "color": "#AFAEB0"},
	{ "partei": "EB Kardetzky", "stimmen": 2.4, "anzahl": "  9 966", "ballontext": "Kardetzky, Marko", "color": "#AFAEB0"},
	{ "partei": "EB Meincke", "stimmen": 0.3, "anzahl": "  1 411", "ballontext": "Meincke, Stefan", "color": "#AFAEB0"}
];

var exportConfig_laiv = {
	menuTop: "21px",
	menuBottom: "auto",
	menuRight: "21px",
	backgroundColor: "#efefef",

	menuItemStyle: {
	backgroundColor: '#EFEFEF',
	rollOverBackgroundColor: '#DDDDDD'},

	menuItems: [{
		textAlign: 'center',
		icon: '../images/export.png',
		onclick:...