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?