4D Chart v13

CT SET CHART OPTIONS

Home

 
4D Chart v13
CT SET CHART OPTIONS

CT SET CHART OPTIONS 


 

CT SET CHART OPTIONS ( area ; object ; options ) 
Parameter Type   Description
area  Longint in 4D Chart area
object  Longint in Object ID
options  Integer array in Array containing option codes

The CT SET CHART OPTIONS command sets the options for the selected graph. These options are equivalent to the options that the user can set in the Options dialog box for each chart type.

The options codes for each graph type are listed in the section Parameter Codes.

Example  

This example sets the chart options of the column chart specified by $ChartID to horizontal, stacked proportional, 100 percent overlap, and 25 percent gap.

 ARRAY INTEGER(aOptions;4)
 aOptions{1}:=1
 aOptions{2}:=2
 aOptions{3}:=100
 aOptions{4}:=25
 CT SET CHART OPTIONS(Area;$ChartID;aOptions)

 
PROPERTIES 

Product: 4D Chart
Theme: CT Chart
Number: 14586

 
INDEX

Alphabetical list of commands

 
HISTORY 

Created: 4D Chart 1

 
SEE ALSO 

CT GET CHART OPTIONS