ManualRedraw

 

This property enables (true) / disables (false) manual redrawing of the chart when the chart properties/attributes are changed. When this property is enabled and other chart properties and attributes are changed, the appearance of the chart is not changed. When this property is set to false, the chart is redrawn with the new attribute when any chart property is changed.

Data Type:

Boolean

Range:

true / false

 

true=

Do not automatically redraw the chart when attributes are changed

 

false=

Automatically redraw the chart when attributes are changed

Default:

false

Syntax:

setManualRedraw ( true | false );

 

boolean = getManualRedraw();

MarkerDisplay

 

This property enables (true) / disables (false) the display of markers in a 2D chart. Use this property to turn off markers (false) in a Line Chart when you only want to see the lines themselves and not the markers. The DepthRadius property must be set to zero in order for this property to be properly applied to the chart.

Data Type:

Boolean

Range:

true / false

 

true=

Display markers

 

false=

Do not display markers

Default:

true

Syntax:

setMarkerDisplay ( true | false )

 

boolean = getMarkerDisplay();

Example:

perspective1.setGraphType(41);
perspective1.setMarkerDisplay(true);

 

 

perspective1.setMarkerDisplay(false);

 

Also See:

ConnectLineMarkers, ConnectScatterMarkers, MarkerSizeDefault, setMarkerShape(), setMarkerSize()

MarkerSizeDefault

 

This property defines the size of markers in a 2D chart. The setMarkerSize() method can override this property by assigning a marker size to a specific series/group point.

Data Type:

Integer

Range:

0...100

Default:

30

Syntax:

setMarkerSizeDefault ( value );

 

value = getMarkerSizeDefault();

Example:

perspective1.setGraphType(41);
perspective1.setDepthRadius(0);
perspective1.setMarkerSizeDefault(90);

 

 

perspective1.setMarkerSizeDefault(60);

 

Also See:

ConnectLineMarkers, ConnectScatterMarkers, MarkerDisplay, UseSeriesShapes, setMarkerShape(), setMarkerSize()

MoveAxisTitles

 

This property enables/disables the movement of axis titles. The axis title is selected and dragged with the mouse. A title string must be defined and setTitleDisplay must be set to true.

Data Type:

Boolean

Range:

True/False

Default:

False

Syntax:

setMoveAxisTitles(true | false);

 

boolean = getMoveAxisTitles();

Example:

perspective1.setMoveAxisTitles(false);
perspective1.setO1TitleString("O1AxisTitle");
perspective1.setO1TitleDisplay(true);

 

 

perspective1.setMoveAxisTitles(true);
perspective1.setO1TitleString("O1AxisTitle");
perspective1.setO1TitleDisplay(true);

 

Also See:

setO1TitleString();, setO2TitleDisplay();setO2TitleString();,
setO1TitleDisplay();