We are still having a problem getting the specified colors to render correctly in the application. With this array of 5 algorithmicColorRamp instances and the number of class breaks set to 5, the first color (dark green) is displayed for both the first class and last class. The last color in the array (burnt orange) never renders and the first color in the array (dark green) is rendered twice (first and last). This is occuring in both my application and the Generate Renderer sample code I copied from your flex API website. Do you have any suggestions about how to fix this issue or update the array to work for the required application?
<esri:MultipartColorRamp id="colorRamp">
<esri:colorRamps>
<!--dark green-->
<esri:AlgorithmicColorRamp algorithm="esriCIELabAlgorithm" fromColor="0x5C8944" toColor="0x5C8944"/>
<!--light green-->
<esri:AlgorithmicColorRamp algorithm="esriCIELabAlgorithm" fromColor="0x89CD66" toColor="0x89CD66"/>
<!--tan-->
<esri:AlgorithmicColorRamp algorithm="esriCIELabAlgorithm" fromColor="0xF5CA7A" toColor="0xF5CA7A"/>
<!--dark tan-->
<esri:AlgorithmicColorRamp algorithm="esriCIELabAlgorithm" fromColor="0xE69800" toColor="0xE69800"/>
<!--burnt orange-->
<esri:AlgorithmicColorRamp algorithm="esriCIELabAlgorithm" fromColor="0xA87000" toColor="0xA87000"/>
</esri:colorRamps>
</esri:MultipartColorRamp>