BiDirectional

 

This property reverses the text alignment of all objects and the location of legend text next to label markers. This property is provided for international support ONLY! It can be used to make the entire chart read from right-to-left or left-to-right. However, note that BiDirectional(true) does not reverse the values of the associated properties and methods. They retain their original values. For example, getTextJustHoriz() would return zero (left) even though visually the text is aligned right by BiDirectional(true).

Data Type:

boolean

Range:

true / false

 

true=

Enable Right-to-Left Alignment

 

false=

Select normal Left-to-Right Alignment

Default:

false

Syntax:

setBiDirectional ( true | false );

 

boolean = getBiDirectional ();

Example:

perspective1.setDepthRadius(0);
perspective1.setBiDirectional(true);

 

 

perspective1.setBiDirectional(false);

 

Notes:

Use this property with great care! Your application must keep track of the BiDirectional setting and handle the reverse values supplied by associated properties and methods.