RatingChart.MoveColumn

Syntax

MoveColumn: PP.Ui.RatingChartColumn;

Description

The MoveColumn property determines a column of data series position change.

Comments

This column displays data series position change in the rating in relation to the previous time line step.

Use JSON or the setMoveColumn method to set the property value, and the getMoveColumn method to get the property value.

Example

Executing the example requires that the page contains the RatingChart component named ratingChart (see Example of Creating the RatingChart Component). Hide column of data series position change:

// Get and hide column of data series position change
moveColumn = ratingChart.getMoveColumn();
moveColumn.setIsVisible(false);

After executing the example the column of data series position change will be hidden.

See also:

RatingChart