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?