RatingChart.Max

Syntax

Max: Number;

Description

The Max property determines maximum value of active value column.

Comments

The property is read-only. Use the getMax method to get the property value.

To get the minimum value, use the RatingChart.Min property.

Example

Executing the example requires that the page contains the RatingChart component named ratingChart (see Example of Creating the RatingChart Component). Get maximum and minimum values of values active column:

// Get maximum value
ratingChart.getMax();
// Get minimum value
ratingChart.getMin();

After executing the example the console displays maximum and minimum values of rating chart values active column.

See also:

RatingChart