ChartDirector 7.1 (.NET Edition)

ThreeDScatterGroup.setDataSymbol4


Usage

[C#]public void setDataSymbol4(int[] shape [, int size [, int fillColor [, int edgeColor ]]]);
[VB]Public Sub setDataSymbol4(shape As Integer() [, size As Integer [, fillColor As Integer [, edgeColor As Integer ]]])

Description

Uses a custom shape as the graphics symbol to plot the data points.

Arguments

ArgumentDefaultDescription
shape(Mandatory)An array of integers representing the coordinates the polygon vertices. See Shape Specification on how the custom shape is defined.
size11The size of the symbol in pixels. By default, the width and height will be of the same size. If you want to use different size for width and height, you can pass the width and height to Chart.xySize and use the return value as the size.
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.

Return Value

None