ChartDirector 7.1 (C++ Edition)

LineLayer.setSymbolScale


Usage

void setSymbolScale(DoubleArray zDataX, int scaleTypeX = PixelScale, DoubleArray zDataY = DoubleArray(), int scaleTypeY = PixelScale);

Description

Sets the size of the symbol for each data point (for creating bubble charts).

One common usage for this method is to draw circle symbols of different sizes at each data points, creating a bubble chart.

This method supports any valid data symbols. You can create bubble charts with square bubbles, or even custom data symbols. Also, this method supports independent x and y direction sizing, so you can create bubbles elliptical in shape, and use the horizontal and vertical radius to represent different data.

ChartDirector supports specifying sizes as pixels or in axis scale. The unit is specified by using the following predefined constants.

ConstantValueDescription
PixelScale0The unit is measured in pixels.
XAxisScale1The unit is measured in x-axis scale.
YAxisScale2The unit is measured in y-axis scale.

Arguments

ArgumentDefaultDescription
zDataX(Mandatory)The sizes of the symbols at the x-axis direction, expressed using the unit defined by the scaleTypeX argument.
scaleTypeXPixelScaleThe unit for zDataX, which must be one of the predefined constants in the table above.
zDataY[Empty_Array]The sizes of the symbols at the y-axis direction, expressed using the unit defined by the scaleTypeY argument. An empty array means the sizes at the y-axis direction are the means as the sizes at the x-axis direction.
scaleTypeYPixelScaleThe unit for zDataY, which must be one of the predefined constants in the table above.

Return Value

None