* Calculates the maximum y value to display in the chart. Includes yAxisPadding if set. * @returns {*}
()
| 876 | * @returns {*} |
| 877 | */ |
| 878 | yAxisMax () { |
| 879 | const m = max(this.data(), e => this.valueAccessor()(e)); |
| 880 | return utils.add(m, this._yAxisPadding); |
| 881 | } |
| 882 | |
| 883 | /** |
| 884 | * Set or get y axis padding for the elastic y axis. The padding will be added to the top and |
no test coverage detected