data
Two dimensional array containing the chart data. This array is readable and writable.
Type
Two-dimensional array
Example
for (var i=1; i<data.length; i++) {
if (Chart1.data[i]['Name'] == 'Web Bridge') {
Chart1.data[i]['Sum(Quantity Purchased)'] = 0;
alert('Note: "Web Bridge" has been discontinued.');
}
}
To bind an unbound chart to a Data Block or cube in the Worksheet, use the following syntax:
// Bind a Data Block:
Chart1.data="table_name";
// Bind a cube:
Chart1.data="cube::table_name";
See Also
Data, in Chart Script Reference, for information about working with chart data.
| << toolTip | © 1996-2013 InetSoft Technology Corporation (v11.5) | VS.6 Selection List and Tree >> |