Does the chart have a series grouping?
If yes, then assuming you have a series grouping called "ProductCategory",
you have to use a style color expression with an aggregate function:
= iif(First(Fields!Abc.Value, "ProductCategory") > 10, "Red", Nothing)
The important part is the aggregate scope which has to be identical to the
chart series grouping name. Just using the First aggregate without the scope
will give you incorrect results, because the aggregate will be just scoped
for every chart datapoint (and therefore null if you don't have any
datapoints for a particular series group / category group combination).
-- Robert

Signature
This posting is provided "AS IS" with no warranties, and confers no rights.
>I am running with SP2 and have attempted to put in the code to make this
> happen but it renders all of the labels with the color not just the one
[quoted text clipped - 29 lines]
>> >
>> > Thanks
Todd - 30 Sep 2005 18:25 GMT
No, The chart does not have series grouping. I also wonder if I have
communicated this effectively. I am talking about the labels on the x-axis.
I am only concerned with the series labels not data point labels. Does this
help to clarify?
> Does the chart have a series grouping?
>
[quoted text clipped - 44 lines]
> >> >
> >> > Thanks
Robert Bruckner [MSFT] - 30 Sep 2005 19:18 GMT
Sorry, the individual x-axis labels share the same color and font settings.
-- Robert

Signature
This posting is provided "AS IS" with no warranties, and confers no rights.
> No, The chart does not have series grouping. I also wonder if I have
> communicated this effectively. I am talking about the labels on the
[quoted text clipped - 63 lines]
>> >> >
>> >> > Thanks