blanco

Members
  • Content count

    2
  • Joined

  • Last visited

About blanco

  • Rank
    Forum Newbie
  1. Formatting text in SSGrid

    Oh ok. Is this functionality that has been removed then? I am sure I have seen posts from way back where this was possible. Are there any plans to change this? This may well be a show stopper for me on using these charts.
  2. Formatting text in SSGrid

    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>