ChartBox.MetadataChanged

Syntax

MetadataChanged: function (sender, args);

Parameters

sender. Event source.

args. Event information.

Description

The MetadataChanged event occurs after changing metadata of express report chart.

Example

Executing the example requires that the HTML page contains the ChartBox component named chartBox (see Example of Creating the ChartBox Component). Handle the MetadataChanged event:

// Handle the MetadataChanged event
chartBox.MetadataChanged.add(
    function() {
        console.log("Metadata of the express report chart is changed.");
    }
);
// Call the MetadataChanged event
chartBox.MetadataChanged.fire(this);

After executing the example on occurring the MetadataChanged event, the browser console displays a message that metadata of the express report chart is changed.

See also:

ChartBox