Software FX Posted September 15, 1999 Report Share Posted September 15, 1999 The way to do this is to clear all the series legend labels and then assign just one for each color at the appropriate position. You can use any position that contains a point of the desired color. Usually the first one is the best choice. Then assign the SerLeg property ONCE per color using the same index used in the color property. For example if you assign the Color property as follows: .Color(0) = RGB(255,0,0) .Color(1) = RGB(255,0,0) .Color(2) = RGB(255,0,0) .Color(3) = RGB(0,255,0) .Color(4) = RGB(255,0,0) .Color(5) = RGB(0,255,0) You must assign the SerLeg property as follows: .SerLeg(0) = "Red" .SerLeg(3) = "Green" Frank SFX Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.