Yes, you can set the FillMode to DataPoints, and then tell the series what color to use for what bar.
<code>
e.g.:
bar.Appearance.FillMode = AppearanceFillMode.DataPoints;
and then :
bar.Appearance.FillEffects.Add( new FillEffect( Color.Aqua ) );
or :
bar.Add( 10, "", new FillEffect( Color.Aqua ) );
</code>
André
Software Developer and Tech Support
Xceed Software Inc.