TextAutofitMax

 

This property sets the maximum font size in virtual coordinates that automatic fitting will use to fit/size chart labels and legend text. It does not affect the chart title, subtitle, and footnote.

Data Type:

Integer

Range:

Any integer value

Default:

1600

Syntax:

setTextAutofitMax ( value );

 

value = setTextAutofitMax();

Example:

perspective1.setTextAutofitMax(2600);
perspective1.setTextAutofitMin(200);
perspective1.setDepthRadius(0);

 

 

perspective1.setTextAutofitMax(1000);
perspective1.setTextAutofitMin(200);

 

   

TextAutofitMin

 

This property sets the minimum font size in virtual coordinates that automatic fitting will use to size chart labels and legend text. It does not affect the chart title, subtitle, and footnote.

Data Type:

Integer

Range:

Any integer value

Default:

50

Syntax:

setTextAutofitMin ( value );

 

value = setTextAutofitMin();

TitleAutofit

 

This property enables (true) / disables (false) automatic fitting of the title string that is defined by the TitleString property and enabled for display by the TitleDisplay property.

Data Type:

Boolean

Range:

true / false

 

true=

Automatically size to fit title string inside the bounding box set by setRect(getTitle(),...);

 

false=

Allow title string to be any size

Default:

true

Syntax:

setTitleAutofit ( true | false );

 

boolean = getTitleAutofit();

Example:

perspective1.setTitleAutofit(true);
perspective1.setFontSizeVC(perspective1.getTitle(),3710);

 

 

perspective1.setTitleAutofit(false);

 

Also See:

TitleDisplay, TitleString, setFontSizeVC()

TitleDisplay

 

This property enables (true) / disables (false) drawing of the graph's title string that is defined by the TitleString property.

Data Type:

Boolean

Range:

true / false

 

true=

Display title string

 

false=

Do not display title string

Default:

true

Syntax:

setTitleDisplay ( true | false );

 

boolean = getTitleDisplay();

Example

perspective1.setTitleDisplay(true);
perspective1.setSubtitleDisplay(false);
perspective1.setLegendDisplay(false);
perspective1.setY1LabelDisplay(false);

 

 

perspective1.setTitleDisplay(false);
perspective1.setSubtitleDisplay(false);
perspective1.setLegendDisplay(false);
perspective1.setY1LabelDisplay(false);

 

Also See:

TitleAutofit, TitleString

TitleString

 

This property to used to define the title text that will be drawn in a chart when the TitleDisplay property is set to true. When a title string is defined with this property, the TitleDisplay property is automatically set to true.

Data Type:

String

Range:

Any printable characters

Default:

"Chart Title"

Syntax:

setTitleString ( "string" );

 

string = getTitleString();

Also See:

TitleAutofit, TitleDisplay

ToolTipDelay

 

This property gets/sets the delay (in milliseconds) at which tool tips will be displayed when the ToolTipDisplay property is set to true.

Data Type:

integer

Range:

any integer number

Default:

500

Syntax:

setToolTipDelay ( value );

 

value = getToolTipDelay();

Also See:

ToolTipDisplay, ToolTipMode

   

ToolTipDisplay

 

This property enables (true) / disables (false) the display of tool tips..

Data Type:

Boolean

Range:

true / false

 

true=

Display tool tips

 

false=

Do not display tool tips

Default:

false

Syntax:

setToolTipDisplay ( true | false );

 

boolean = getToolTipDisplay();

Also See:

ToolTipDelay, ToolTipMode

ToolTipMode

 

This property toggles tool tips between explicit developer information and user level information..

Data Type:

Boolean

Range:

true / false

 

true=

Developer information

 

false=

User information

Default:

false

Syntax:

setToolTipMode ( value );

 

value = getToolTipMode();

Example:

perspective1.setToolTipMode(true);
perspective1.setToolTipDisplay(true);
perspective1.setDepthRadius(0);

 

 

perspective1.setToolTipMode(false);

 

Also See:

ToolTipDelay, ToolTipDisplay, setDeveloperToolTip(), setUserToolTip()