Example:
0) Put Doughnut2D.swf + example.html + chart.bat + chart.tpl in a folder
1) example.html Code:
<html>
<head>
<title>My First FusionCharts</title>
</head>
<body bgcolor="#ffffff">
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="300" height="300" id="Column3D" >
<param name="movie" value="Doughnut2D.swf" />
<param name="FlashVars" value="&dataURL=data.xml">
<param name="quality" value="high" />
<embed src="Doughnut2D.swf" flashVars="&dataURL=Data.xml" quality="high" width="300" height="300" name="Column3D" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</body>
</html>
2) chart.tpl code like this, to format the XML source of FusionCharts:
<chart caption='Cantidad de Eventos' yAxisName='Total' xAxisName='EventID' >
<set label="%EventID%" value="%Total%" />
</chart>
3) chart.bat logparser code
logparser "select eventid, count(*) as total into data.xml from security group by eventid order by total DESC" -i:evt -o:tpl -tpl:chart.tpl
4) run chart.bat then view the results in chart.html . Fusioncharts i free to use, only insert a litle mark in your charts, but, they are greats.
Enjoy !