Jump to content
Software FX Community

ConstantLines (showing and hiding them.)


User (Legacy)

Recommended Posts

The Style property in the Constant line has a flag for hiding the line and

another for hiding the text.

To hide the line do:

ChartFX1.ConstantLine(0).Style = ChartFX1.ConstantLine(0).Style Or 2 '

CC_HIDE

ChartFX1.Refresh

To re-Show it:

ChartFX1.ConstantLine(0).Style = ChartFX1.ConstantLine(0).Style and not 2 '

CC_HIDE

ChartFX1.Refresh

--

FP

Software FX, Inc.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...