<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.
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:
|
Pie series |
|
Polar Bubble and Polar Scatter |
|
Radar | clockwise is a Boolean that defines the Radar rotation |
<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.
<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>