FusionCharts -Grafico Barras Horas

Created using FusionCharts Suite XT - www.fusioncharts.com

by mhctoledo

HTML

<script src="http://static.fusioncharts.com/code/latest/fusioncharts.js"></script>
<script src="http://static.fusioncharts.com/code/latest/fusioncharts.charts.js"></script>
<script src="http://static.fusioncharts.com/code/latest/themes/fusioncharts.theme.fint.js"></script>
<!-- A simple 100% stacked column chart in FusionCharts showing revenue by product category for current year Attribute: # stack100Percent - Used to make Percentage distribution instead of actual values in a stacked chart -->
<div id="chart-container">FusionCharts will render here</div>

JavaScript

var myChartDonut = new FusionCharts("Doughnut2D.swf", 'GraficoDonut', "100%", "165", "0", "1");
myChartDonut.setXMLData("<chart bgColor='FFFFFF' showBorder='0' showToolTip='0' baseFontColor='333333' chartBottomMargin='0' captionPadding='0' manageResize='1' showLabels='0' showPercentageValues='0' centerLabel='99' startingangle='310' decimals='0' theme='fint' usedataplotcolorforlabels='1'><set label='99' value='99' showLabel='0' showValue='0' color='#64B2DC' /><set label='1' value='1' showLabel='0' showValue='0' color='#FFFFFF' /></chart>");
myChartDonut.setTransparent(false);
myChartDonut.configure("ChartNoDataText", "No Hay Datos");
myChartDonut.render("chart-container");