Rendering

Edge

<edge> allows you to configure the borders of the chart elements. The following table describes the <edge> attributes.

Attribute Type or Value Description
type None|Default|Override|Auto The border type
width integer The line thickness that you can set to Bar3D charts. Value range is [1, 7].

You can also set a color to an edge by using the <color> child element.

Rotation

The following table shows the charts that support the rotation of the graph and the corresponding <rotation> attributes.

Chart <rotation> Attributes
Bar3D The rotation angle values for the 3D orientation:
  • xAngle on the X axis. Value range is [-90, 90].
  • yAngle on the Y axis. Value range is [-180, 180].
Pie series
  • startAngle defines the start angle of the Pie in degrees. Value range is [0, 360] with a step of 1.
  • clockwise is a Boolean that defines the Pie rotation
Polar Bubble and Polar Scatter
  • startAngle defines the start angle of the chart in degrees. Possible values are 0, 90, 180, 270, and 360.
  • clockwise is a Boolean that defines the chart rotation
Radar clockwise is a Boolean that defines the Radar rotation
Shadow

<shadow> allows you to configure the shadow properties of a chart element. The following table describes the <shadow> attributes.

Attribute Type or Value Description
effect None|OneSided Drops a shadow behind the chart elements. Possible values
xOffset double The horizontal distance or offset of the shadow from each chart element in unit.
yOffset double The vertical distance, or offset of the shadow from each chart element in unit.
filterPassCount integer The complexity of the effect. When a visual complexity is increased, performance may be decreased. Value range is [1, 9] with a step of 1.
filterWindowSize integer The smoothness of the shadow. The higher the value, the smoother the effect. Value range is [3, 9] with a step of 2.
lightPower double The light intensity.Value range is [-1.000, +1.000] with a step of 0.05.

You can also set a color to a shadow by using the <color> child element.

Example

<rendering>
    <edge type="Override" width="7">
        <color rgb="#ff00ff" alpha="189"/>
    </edge>
    <rotation startAngle="15" clockwise="true"/>
    <shadow effect="OneSided" xOffset="0.0" yOffset="0.0" filterPassCount="3" filterWindowSize="5" lightPower="0.3">
        <color rgb="#9d9d9d" alpha="187"/>
    </shadow>
</rendering>