Several ChartDirector API accept shape specification as arguments. For example,
BarLayer.setBarShape and
BarLayer.setBarShape2 can be used to specify shapes of bars in bar charts, while
DataSet.setDataSymbol,
DataSet.setDataSymbol4,
PolarLayer.setDataSymbol,
PolarLayer.setDataSymbol4,
ThreeDScatterGroup.setDataSymbol and
ThreeDScatterGroup.setDataSymbol4 be used to specify shapes of data symbols.
In addition to shapes, in certain chart types, ChartDirector also supports using images or custom draw objects for data representation. For example, see
DataSet.setDataSymbol2,
DataSet.setDataSymbol3,
PolarLayer.setDataSymbol2,
PolarLayer.setDataSymbol3,
ThreeDScatterGroup.setDataSymbol2 and
ThreeDScatterGroup.setDataSymbol3.
Built-in shapes are specified as integers. The integers can be constants, or can be generated by a ChartDirector method for parameterized shapes. For example, a circle is represented by a constant
CircleShape (=7). On the other hand, the number representing a polygon depends on the number of sides of the polygon. It is generated by calling the
PolygonShape method, with the number of sides as an argument.
The following table illustrates the various ChartDirector shapes:
Shape Id | Value | Description |
---|
SquareShape | 1 | Square shape. See (5, 1) above.
|
DiamondShape | 2 | Diamond shape. See (6, 1) above.
|
TriangleShape | 3 | Triangle shape pointing upwards. See (7, 1) above.
|
RightTriangleShape | 4 | Triangle shape pointing rightwards. See (1, 2) above.
|
LeftTriangleShape | 5 | Triangle shape pointing leftwards. See (2, 2) above.
|
InvertedTriangleShape | 6 | Triangle shape pointing downwards. See (3, 2) above.
|
CircleShape | 7 | Circle shape. See (1, 1) above.
|
GlassSphereShape | 15 | Glass sphere shape. See (2, 1) above.
|
GlassSphere2Shape | 16 | Bright glass sphere shape. See (3, 1) above.
|
SolidSphereShape | 17 | Solid sphere shape. See (4, 1) above.
|
StarShape | [Method] | Star shapes of various points. See (4, 2), (5, 2), (6, 2), (7, 2), (1, 3), (2, 3), (3, 3), (4, 3) above for stars with 3 to 10 points.
|
PolygonShape | [Method] | Polygon shapes symmetrical about a vertical axis with a vertex at the top center position. See (5, 3) and (7, 3) for polygons of 5 and 6 sides.
|
Polygon2Shape | [Method] | Polygon shapes symmetrical about a vertical axis but without any vertex at the top center position. See (6, 5), (1, 4), (2, 4) for polygons of 5, 6 and 7 sides.
|
CrossShape | [Method] | '+' shapes. See (3, 4), (4, 4), (5, 4), (6, 4), (7, 4), (1, 5), (2, 5) for '+' shape with arm width of 0.1 - 0.7.
|
Cross2Shape | [Method] | 'X' shapes. See (3, 5), (4, 5), (5, 5), (6, 5), (7, 5), (1, 6), (2, 6) for 'X' shapes with arm width of 0.1 - 0.7.
|
ArrowShape | [Method] | Arrow shapes. See (3, 6), (4, 6), (5, 6), (6, 6), (7, 6), (1, 7), (2, 7), (3, 7), (4, 7), (5, 7), (6, 7), (7, 7) for arrows of various angle, head width, stem width and stem length.
|
A custom shape can be a simple shape or complex shape.
A simple shape can be a polygon or an ellipse. A polygon an be specified as an array of numbers (x0, y0, x1, y1, .....) representing the coordinates of the polygon vertices. As a polygon must have at least 3 vertices, the array must contain at least 6 numbers. If it contains only 4 numbers, it is will considered as an ellipse, with the numbers (x, y, rx, ry) interpreted as the coordinates of the center and the horizontal and vertical radii.
A complex shape is composed of multiple simple shapes. For example, a donut is a complex shape composed of two concentric circles. The shape is filled using the even-odd rule. (The web should have a lot of explanation on what is the even-odd rule in graphics.) A complex shape can be specified by including multiple simple shapes in the array, using the
NewShape constant to separate them.
The shape should be defined in an area of 1000 x 1000 units, with the x-axis from -500 to 500 going from left to right, and the y-axis from 0 to 1000 going from bottom to top. ChartDirector will automatically scale the polygon so that 1000 units will become to the pixel size as requested by the various ChartDirector API.
As an example, the standard diamond shape in ChartDirector is represented as an array with 8 numbers:
As an example, the shape of the standard diamond shape in ChartDirector is represented as an array with 8 numbers:
0, 0, 500, 500, 0, 1000, -500, 500
© 2021 Advanced Software Engineering Limited. All rights reserved.