BubbleChartMaster.PropertyChanged

Syntax

PropertyChanged: function (sender, args);

Parameters

sender. Event source.

args. Event information. Available arguments - object of the PP.Mb.Ui.PropertyChangedEventArgs class containing the following properties: PropertyName - property name as an element of the PP.Exp.Ui.ControlType enumeration, Metadata - settings of express report bubble chart wizard, TypeUpdateData - updated data type that is set by means of the PP.Exp.Ui.ViewTypeUpdate enumeration.

Description

The PropertyChanged event occurs after changing settings of express report bubble chart wizard.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Handle the PropertyChanged event:

// Get express report bubble chart wizard
var master = expressBox.getPropertyBarView().getBubbleChartMaster();
// Handle the PropertyChanged event
master.PropertyChanged.add(function () {
    console.log("Settings of express report bubble chart wizard have been changed.");
});
// Call the PropertyChanged event
master.PropertyChanged.fire(this);

After executing the example on calling the PropertyChanged event the browser console displays a message that the bubble chart wizard settings are changed.

See also:

BubbleChartMaster