ruchika

Members
  • Content count

    3
  • Joined

  • Last visited

  • Days Won

    1

About ruchika

  • Rank
    Forum Newbie
  1. Tried removing javascript renderer...but now the print is coming empty, earlier the charts were showing up but without colors (only outline)
  2. I am using Fusion Charts XT v 3.2.2 Are you saying if I use flash then this problem may not come on devices where flash is supported?
  3. I am trying to print pie chart, using right click context menu or control + P. In google chrome, the chart is showing up without colors. Only outer line shows up. Works fine in Mozilla FireFox, Windows Safari, IE 9. This is how I am rendering my chart. ( I also have some more charts in JSP. ) FusionCharts.setCurrentRenderer('javascript');<br style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 13px; "> var MyChart = new FusionCharts("/FusionCharts/Pie3D.swf", "ChatId", "400", "300", "0", "0");<br style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 13px; "> MyChart.setXMLData("<chart caption='Time Utilization' YAxisName='' showValues='1' numberPrefix='' formatNumberScale='0'"+<br style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 13px; "> " showPercentInToolTip='1' showLabels='1' showLegend='1'> "+<br style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 13px; "> "<set label='Correct' value='5' isSliced='0' displayValue='5'/>"+<br style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 13px; "> "<set label='Incorrect' value='2' isSliced='0' displayValue='2'/>"+<br style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 13px; "> "<set label='Skipped' value='2' isSliced='0' displayValue='2'/>"+<br style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 13px; "> "<set label='Unutilized' value='1' isSliced='0' displayValue='1'/>"+<br style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 13px; "> "</chart>");<br style="color: rgb(34, 34, 34); font-family: arial, sans-serif; font-size: 13px; "> MyChart.render("Chatdiv"); Any idea where the problem is?