RatingChart.GraphColumn

Syntax

GraphColumn: PP.Ui.RatingChartColumn;

Description

The GraphColumn property determines the column with graphic view of data series.

Comments

Use JSON or the setGraphColumn method to set the property value, and the getGraphColumn 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). Enable to the user change column width with rating chart data series graphic view using a mouse:

// Get column with graphic view of data series
graphColumn = ratingChart.getGraphColumn();
// Enable change of column width with data series graphic view using a mouse
graphColumn.setIsResizable(true);

After executing the example it will be possible to change manually column width with data series graphic view.

See also:

RatingChart