RatingChart.getVisibleSeriesHeight

Syntax

getVisibleSeriesHeight(): Number;

Description

The getVisibleSeriesHeight method returns total height of displayed data series.

Comments

To get the number of displayed data series, use the RatingChart.getVisibleSeriesCount method.

Example

Executing the example requires that the page contains the RatingChart component named ratingChart (see Example of Creating the RatingChart Component). Get number and total height of displayed data series:

// Get number of displayed data series
ratingChart.getVisibleSeriesCount();
// Get total height
ratingChart.getVisibleSeriesHeight();

After executing the example the console displays number and total height of displayed data series of the rating chart.

See also:

RatingChart