Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The name of a Javascript function to be called when a chart item is selected. The function receives an object argument that has the list row and column of the selected item.

Example:

     function selectHandler(sel) {
   alert("select handler: Row=" + sel.row + ". Column=" + sel.column);
}