Jump to content
Software FX Community

RE: Wrapped X-Axis and Integer Y-Axis


Software FX

Recommended Posts

You will need to remove the AS_SINGLELINE style as follows 

ChartFX1.Axis(AXIS_X).Style = ChartFX1.Axis(AXIS_X).Style And Not AS_SINGLELINE

If you know where to break the labels you can also insert your own CR/LF characters as follows

ChartFX1.Legend(0) = "Line 1" + Chr(13) + Chr(10) + "Line 2"

Regards,

Juan Cegarra

Software FX, Inc.

http://support.softwarefx.com

-----Original Message-----

From: Christophe [ mailto:christophe.galibert@sanofi.com]

Posted At: Thursday, January 06, 2000 8:59 AM

Posted To: Server

Conversation: Wrapped X-Axis and Integer Y-Axis

Subject: Wrapped X-Axis and Integer Y-Axis

Hi,

I am using a graph with X-axis lengends larger then columns widths.

Is there a way to "wrap" the legend on more than one line under the column

(still horizontal) ? For exemple,

the following legend:

legend for column 1

... should write ... :

legend

for

column

1

Thanks,

Christophe.

Link to comment
Share on other sites

You will need to remove the AS_SINGLELINE style as follows 

ChartFX1.Axis(AXIS_X).Style = ChartFX1.Axis(AXIS_X).Style And Not AS_SINGLELINE

If you know where to break the labels you can also insert your own CR/LF characters as follows

ChartFX1.Legend(0) = "Line 1" + Chr(13) + Chr(10) + "Line 2"

Regards,

Juan Cegarra

Software FX, Inc.

http://support.softwarefx.com

-----Original Message-----

From: Christophe [ mailto:christophe.galibert@sanofi.com]

Posted At: Thursday, January 06, 2000 8:59 AM

Posted To: Server

Conversation: Wrapped X-Axis and Integer Y-Axis

Subject: Wrapped X-Axis and Integer Y-Axis

Hi,

I am using a graph with X-axis lengends larger then columns widths.

Is there a way to "wrap" the legend on more than one line under the column

(still horizontal) ? For exemple,

the following legend:

legend for column 1

... should write ... :

legend

for

column

1

Thanks,

Christophe.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...