tchambers replied to GregorTP's topic in Bug Reports
I have the same problem.
What I am seeing is that firefox seems to be requesting the .SWF files multiple times. Maybe this was already noted, but monitoring the traffic shows it to be the case. I have 15 of the same displayed charts with different values (sparklines) and it asks for the .swf files 15 times.
var b2myChart10 = new FusionCharts('files/FusionCharts/HBullet.swf', 'b2myChart10', '100', '20', '0', '0');
b2myChart10.setDataXML("
<chart pallette='1' plotFillColor='00FF00' setAdaptiveYMin='0' showPlotBorder='0' showTickValues='0' lowerLimit='0' upperLimit='100' showBorder='0' showTickMarks='0' bgColor='FFFFFF'>
<colorRange>
<color minValue='0' maxValue='54.4444444444' color='FF0000' />
<color minValue='54.4444444444' maxValue='77.7777777778' color='00FF00' />
<color minValue='77.7777777778' maxValue='100' color='0000FF' />
</colorRange>
<value>
0
</value>
</chart>
"); b2myChart10.render('bchart10');
Above is my code and I expected a red band, green band, and a blue band - yet I get the standard grey bands.
I don't think specifying the colors in colorrange works.
Do you agree with my expectation?