Explode
Explode(iDataSet, iIndex, bExplode)
Show graph item in exploded form
iDataSet | Integer | Dataset |
---|---|---|
iIndex | Integer | Data point withing dataset to be exploded |
bExplode | Bool | Bool flag, TRUE to explode and FALSE to leave in place |
Applies to: Graph
Introduced in KCML version 5.03
Explode(iIndex, bExplode)
Show graph item in exploded form
iIndex | Integer | Data point withing dataset to be exploded |
---|---|---|
bExplode | Bool | Bool flag, TRUE to explode and FALSE to leave in place |
Applies to: Graph
Introduced in KCML version 5.03
Explode
Whether a graph item is show in an emphasized state
Read-only Boolean property
Applies to: GraphItem
Introduced in KCML version 6.90
The Explode() method allows a particular element of the graph to be highlighted in some manner. It currently applies only to pie charts and highlights the element by showing the pie sector slightly removed from the pie circle. The first two parameters are the data set and data index; the last parameter should be TRUE to show the item as exploded and FALSE to show it as normal. Any number of items may be shown as exploded at any time.
Note that exploding items using the 3D pie chart style is not recommended because only the curved edge is shown in 3D and not the pie sector sides (which are never seen unless items are exploded).
If there is only one dataset the first argument can be omitted and the method can be called polymorphically with two arguments. Thus
..Explode(0, iIndex, bExplode) ..Explode(iIndex, bExplode)
are identical.