Highlight on hover

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 dataProvider = [{
    "year": "2003",
    "europe": 2.5,
    "namerica": 2.5,
    "asia": 2.1,
    "lamerica": 0.3,
    "meast": 0.2,
    "africa": 0.1,
    "alpha": 1
}, {
    "year": "2004",
    "europe": 2.6,
    "namerica": 2.7,
    "asia": 2.2,
    "lamerica": 0.3,
    "meast": 0.3,
    "africa": 0.1,
    "alpha": 1
}, {
    "year": "2005",
    "europe": 2.8,
    "namerica": 2.9,
    "asia": 2.4,
    "lamerica": 0.3,
    "meast": 0.3,
    "africa": 0.1,
    "alpha": 1
}];
var chart = AmCharts.makeChart("chartdiv", {
    "type": "serial",
    "theme": "none",
    "chartCursor": {
        cursorAlpha: 0,
        valueBalloonsEnabled: false,
        categoryBalloonEnabled: false
    },
    "dataProvider": dataProvider,
    "valueAxes": [{
        "stackType": "100%",
        "axisAlpha": 0,
        "gridAlpha": 0,
        "labelsEnabled": false,
        "position": "left"
    }],
    "graphs": [{
        //"fillAlphas": 0.9,
        "alphaField": "alpha",
        //"showBalloon": false,
        //"fontSize": 11,
        //"labelText": "[[percents]]%",
        //"lineAlpha": 0.5,
        "title": "Europe",
        "type": "column",
        "valueField": "europe"
    }, {
        "fillAlphas": 0.9,
        "alphaField": "alpha",
        "showBalloon": false,
        "fontSize": 11,
        "labelText": "[[percents]]%",
        "lineAlpha": 0.5,
        "title": "North America",
        "type": "column",
        "valueField": "namerica"
    }, {
        "fillAlphas": 0.9,
        "alphaField": "alpha",
        "showBalloon": false,
        "fontSize": 11,
        "labelText": "[[percents]]%",
        "lineAlpha": 0.5,
        "title": "Asia-Pacific",
        "type": "column",
        "valueField": "asia"
    }, {
        "fillAlphas": 0.9,
        "alphaField": "alpha",
        "showBalloon": false,
        "fontSize": 11,
        "labelText": "[[percents]]%",
        "lineAlpha": 0.5,
        "title": "Latin America",
        "type": "column",
       ...