Platforms to show: All Mac Windows Linux Cross-Platform

Back to CDThreeDScatterGroupMBS class.

CDThreeDScatterGroupMBS.Constructor   Private

Type Topic Plugin Version macOS Windows Linux iOS Targets
method ChartDirector MBS ChartDirector Plugin 12.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
The private constructor.

CDThreeDScatterGroupMBS.setDataSymbol(file as folderitem)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method ChartDirector MBS ChartDirector Plugin 12.4 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Load an image from a file and use it as the graphics symbol to plot the data points.

ChartDirector will automatically detect the image file format using the file extension, which must either png, jpg, jpeg, gif, wbmp or wmp (case insensitive).

Please refer to BaseChart.setSearchPath on the directory that ChartDirector will search for the file.

ArgumentDefaultDescription
image(Mandatory)The filename of the image file. The image type is determined based on file extension, which must be png, jpg/jpeg, gif or wbmp/wmp.

See also:

CDThreeDScatterGroupMBS.setDataSymbol(ImageFilePath as string)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method ChartDirector MBS ChartDirector Plugin 12.4 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Load an image from a file and use it as the graphics symbol to plot the data points.

ChartDirector will automatically detect the image file format using the file extension, which must either png, jpg, jpeg, gif, wbmp or wmp (case insensitive).

Please refer to BaseChart.setSearchPath on the directory that ChartDirector will search for the file.

ArgumentDefaultDescription
image(Mandatory)The filename of the image file. The image type is determined based on file extension, which must be png, jpg/jpeg, gif or wbmp/wmp.

See also:

CDThreeDScatterGroupMBS.setDataSymbol(polygon() as Integer, size as Integer = 11, fillColor as color, edgeColor as color)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method ChartDirector MBS ChartDirector Plugin 12.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Uses a custom polygon as the graphics symbol to plot the data points.

ArgumentDefaultDescription
polygon(Mandatory)An array of integers representing the coordinates the polygon vertices. See Shape Specification on how the custom shape is defined.
size11The nominal width and height of the symbol in pixels.
fillColor-1The color used to fill the symbol. -1 means that the color is automatically selected from the palette. SameAsMainColor means the color is based on the z value of the symbol as according to the ColorAxis (accessible via ThreeDChart.colorAxis).
edgeColor-1The edge color used to draw the edge of the symbol. -1 means using LineColor as the edge color.

See also:

CDThreeDScatterGroupMBS.setDataSymbol(polygon() as Integer, size as Integer = 11, fillColor as Integer = -1, edgeColor as Integer = -1)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method ChartDirector MBS ChartDirector Plugin 12.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Uses a custom polygon as the graphics symbol to plot the data points.

ArgumentDefaultDescription
polygon(Mandatory)An array of integers representing the coordinates the polygon vertices. See Shape Specification on how the custom shape is defined.
size11The nominal width and height of the symbol in pixels.
fillColor-1The color used to fill the symbol. -1 means that the color is automatically selected from the palette. SameAsMainColor means the color is based on the z value of the symbol as according to the ColorAxis (accessible via ThreeDChart.colorAxis).
edgeColor-1The edge color used to draw the edge of the symbol. -1 means using LineColor as the edge color.

See also:

CDThreeDScatterGroupMBS.setDataSymbol(symbol as Integer, size as Integer = 5, fillColor as Integer = -1, edgeColor as Integer = -1, lineWidth as Integer = 1)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method ChartDirector MBS ChartDirector Plugin 12.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Uses a custom polygon as the graphics symbol to plot the data points.

ArgumentDefaultDescription
polygon(Mandatory)An array of integers representing the coordinates the polygon vertices. See Shape Specification on how the custom shape is defined.
size11The nominal width and height of the symbol in pixels.
fillColor-1The color used to fill the symbol. -1 means that the color is automatically selected from the palette. SameAsMainColor means the color is based on the z value of the symbol as according to the ColorAxis (accessible via ThreeDChart.colorAxis).
edgeColor-1The edge color used to draw the edge of the symbol. -1 means using LineColor as the edge color.

See also:

CDThreeDScatterGroupMBS.setDataSymbol(symbol as Integer, size as Integer, fillColor as color)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method ChartDirector MBS ChartDirector Plugin 12.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Uses a custom polygon as the graphics symbol to plot the data points.

ArgumentDefaultDescription
polygon(Mandatory)An array of integers representing the coordinates the polygon vertices. See Shape Specification on how the custom shape is defined.
size11The nominal width and height of the symbol in pixels.
fillColor-1The color used to fill the symbol. -1 means that the color is automatically selected from the palette. SameAsMainColor means the color is based on the z value of the symbol as according to the ColorAxis (accessible via ThreeDChart.colorAxis).
edgeColor-1The edge color used to draw the edge of the symbol. -1 means using LineColor as the edge color.

See also:

CDThreeDScatterGroupMBS.setDataSymbol(symbol as Integer, size as Integer, fillColor as color, edgeColor as color, lineWidth as Integer = 1)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method ChartDirector MBS ChartDirector Plugin 12.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Uses a custom polygon as the graphics symbol to plot the data points.

ArgumentDefaultDescription
polygon(Mandatory)An array of integers representing the coordinates the polygon vertices. See Shape Specification on how the custom shape is defined.
size11The nominal width and height of the symbol in pixels.
fillColor-1The color used to fill the symbol. -1 means that the color is automatically selected from the palette. SameAsMainColor means the color is based on the z value of the symbol as according to the ColorAxis (accessible via ThreeDChart.colorAxis).
edgeColor-1The edge color used to draw the edge of the symbol. -1 means using LineColor as the edge color.

See also:

CDThreeDScatterGroupMBS.setDropLine

Type Topic Plugin Version macOS Windows Linux iOS Targets
method ChartDirector MBS ChartDirector Plugin 12.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Sets the drop line color and width.

Drop lines are vertical lines that join the data points to the bottom of the plot region. It helps in visualizing the height of the data points.

ArgumentDefaultDescription
dropLineColor(Mandatory)The color of the drop line.
dropLineWidth1The width of the drop line.

See also:

Some examples using this method:

CDThreeDScatterGroupMBS.setDropLine(dropLineColor as color, dropLineWidth as Integer = 1)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method ChartDirector MBS ChartDirector Plugin 12.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Sets the drop line color and width.

Drop lines are vertical lines that join the data points to the bottom of the plot region. It helps in visualizing the height of the data points.

ArgumentDefaultDescription
dropLineColor(Mandatory)The color of the drop line.
dropLineWidth1The width of the drop line.

See also:

CDThreeDScatterGroupMBS.setDropLine(dropLineColor as Integer, dropLineWidth as Integer = 1)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method ChartDirector MBS ChartDirector Plugin 12.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Sets the drop line color and width.

Drop lines are vertical lines that join the data points to the bottom of the plot region. It helps in visualizing the height of the data points.

ArgumentDefaultDescription
dropLineColor(Mandatory)The color of the drop line.
dropLineWidth1The width of the drop line.

See also:

CDThreeDScatterGroupMBS.setLegendIcon(width as Integer, height as Integer = -1, color as Integer = -1)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method ChartDirector MBS ChartDirector Plugin 12.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Uses one of the built-in symbols as the graphics symbol to plot the data points.

ArgumentDefaultDescription
symbol(Mandatory)One of the predefined shape constants representing the symbol shape. See Shape Specification for the available built-in shapes.
size5The width and height of the symbol in pixels.
fillColor-1The color used to fill the symbol. -1 means that the color is automatically selected from the palette. kSameAsMainColor means the color is based on the z value of the symbol as according to the ColorAxis (accessible via ThreeDChart.colorAxis).
edgeColor-1The edge color used to draw the edge of the symbol. -1 means using LineColor as the edge color.
lineWidth1The line width used for drawing the symbols.

See also:

CDThreeDScatterGroupMBS.setLegendIcon(width as Integer, height as Integer, color as color)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method ChartDirector MBS ChartDirector Plugin 12.3 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Uses one of the built-in symbols as the graphics symbol to plot the data points.

ArgumentDefaultDescription
symbol(Mandatory)One of the predefined shape constants representing the symbol shape. See Shape Specification for the available built-in shapes.
size5The width and height of the symbol in pixels.
fillColor-1The color used to fill the symbol. -1 means that the color is automatically selected from the palette. kSameAsMainColor means the color is based on the z value of the symbol as according to the ColorAxis (accessible via ThreeDChart.colorAxis).
edgeColor-1The edge color used to draw the edge of the symbol. -1 means using LineColor as the edge color.
lineWidth1The line width used for drawing the symbols.

See also:

CDThreeDScatterGroupMBS.setSymbolOffset(offsetX as Integer, offsetY as Integer)

Type Topic Plugin Version macOS Windows Linux iOS Targets
method ChartDirector MBS ChartDirector Plugin 15.1 ✅ Yes ✅ Yes ✅ Yes ✅ Yes All
Offset the symbols in the x and y directions in pixel unit.

ArgumentDefaultDescription
xOffset(Mandatory)The x offset in pixels. A positive value mean shifting to the right.
yOffset(Mandatory)The y offset in pixels. A positive value mean shifting to the bottom.

The items on this page are in the following plugins: MBS ChartDirector Plugin.


The biggest plugin in space...