DataMiningRibbonPanel.OnGetDataMiningResult

Syntax

OnGetDataMiningResult: function (sender, args)

Parameters

sender. Event source.

args. Event information.

Description

The OnGetDataMiningResult event occurs after getting data mining result.

Example

To execute the example, the HTML page must contain the DataMiningMaster component named dmMaster (see Example of Creating the DataMiningMaster Component).

// Add event
dmPanel.OnGetDataMiningResult.add(function(sender, args){
 console.log(args);
});
// -> Object DataMiningDescr: Object

After executing the example an event is added that display data about resulting report to the console.

See also:

DataMiningRibbonPanel