Parameters

Some of the WebCharts3D text elements can contain special parameters in the format ${name} or $(name). (The latter notation was introduced to avoid conflicts with other software that might use the former syntax for its own needs). These parameters are expanded during run-time and replaced with their corresponding values. For example, you can specify:

$(colLabel) $(value) is $(colPercent) of $(colTotal)
to display the name of the column, the value of the element, percent and column's total value.

The following table shows currently supported parameters:

colIndex  - Index of the column
rowIndex  - Index of the row
colLabel  - Label of the column
rowLabel  - Label of the row
value  - Value formatted using appropriate yAxis labelFormat
nextvalue  - Value in the next series formatted using appropriate yAxis labelFormat
colTotal  - Sum of all absolute values in this column
rowTotal  - Sum of all absolute values in this row
colPercent  - Percent relative to the column total
rowPercent  - Percent relative to the row total
colTitle  - column title (XAxis title)
rowTitle  - row title (seriesTitle attribute)
valueTitle  - value title (YAxis title)
In addition, $(value) pseudo-variable supports optional syntax:
$(value[row,col])
where row and col are optional increment/decrement for the current index. For example, $(value[1,]) is the same as $(nextvalue) and will return the value in the next series with the same column index, while $(value[,1]) will return the value in the next column.