Hi, 
  
I am trying to format some text in an SSGrid and seem to be missing something. 
The code I am using is below. 
Can anyone point out what I am doing wrong. 
Ultimately I want to use html in the label to create a hyperlink, does anyone have an example of this? 
  
Thanks 
<script type="text/javascript">
<!--
   var myChart = new FusionCharts("SSGrid", "myChartId", "400", "400", "0");
   myChart.setXMLData("<chart caption='Staffing Report - Summary' xAxisName='' yAxisName='' baseFontSize='10' colorBoxWidth='0' colorBoxHeight='0' numberItemsPerPage='5' plotGradientColor=' ' >
	<set label='Closed' tooltext='Closed' value='5'  />
	<set label='Today' tooltext='Today' value='3'  />
	<styles>
		<definition>
			<style name='mystyle' type='font' underline='1' color='FF0000' isHTML='1' />
		</definition>
		<application>
			<apply toObject='datalabels' styles='mystyle' />
		</application>
	</styles><
	/chart>");
 myChart.render("chartContainer");
        // -->
        
        </script>