Sorry, then I misunderstood. I thought you had the issue that you want the
font color to be blue when the label is drawn outside the bar and a
different color when drawn inside. I'm glad you could solve your
requirements.
-- Robert

Signature
This posting is provided "AS IS" with no warranties, and confers no rights.
Robert,
Maybe I misunderstood your reply to my last post, but I just wanted to be a
little clearer on what I did.
I've got a bar chart that uses point labels inside the bar chart. When the
bar is short, the point label prints beside the bar, but when the bar is too
long it forces the point label to print on the bar itself.
I really have three values: Total disk space, used disk space, and free disk
space. Building the chart, I used Total disk space and used disk space. And
I left the remaining white space to indicate the free disk space. I used the
pint label to print the amount of free space inside the chart, but I noticed
that when the free space was less than 4000, there wasn't enough of room to
print the amout of free space beside the bar, so it automatically prints the
label on the bar itself.
After getting to reply from Bret, I tried using the expression =IIf(
Fields!FreeSpace.Value < 4000,"White","Black") in the labels style color to
change the label's font color to white if the free space is less than 4000
else change it to black. Come to find out that most of the properties have
an expression... field that lets you add this condition statement to choose
between two values. For example, I also changed the font size the same way
=IIf( Fields!FreeSpace.Value < 4000,"9pt","8pt") because the white characters
didn't show up as good as the black so I made it a little bigger.
Sorry if I misunderstood your response, but I just want to reiterate what I
did. I'm having a hard time finding documentation on RS and this forum is a
great resource. Finding out that I can use this condition to change
properties adds a lot of flexibility but it also makes me ask what other
kinds of conditions or functions are there that I don't know about.