User (Legacy) Posted March 6, 2002 Report Posted March 6, 2002 Hi. I would like to change MarkerShapes. so, I tried to set negative ASCII Code with Font to each Series's MarkerShape Property. but, can't apply Shape of different font to each Series's MarkerShape. The below is my code. With ChartFX1 .Fonts(CHART_POINTFT) = CF_ARIAL .Series(0).MarkerShape = -64 .Fonts(CHART_POINTFT) = CF_WINGDINGS .Series(1).MarkerShape = -180 .Series(2).MarkerShape = MK_INVERTEDTRIANGLE End With The MarkerShape font of two Series (0, 1) is applied by Last Font (CF_WINGDINGS) In upper case, I tried to change Series(0).MarkerShape to the shape that font is CF_ARIAL and ASCII Code is 64. but, the shape that font is CF_WINGDINGS and ASCII code is 64 is applied to Series(0).MarkerShape How can I apply it? Thank you smlee
Software FX Posted March 6, 2002 Report Posted March 6, 2002 There is only ONE font used by the markers. The order in which you assign it has no effect. Only the last one (as with any assignment) will remain. -- FP Software FX, Inc.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.