* Calculates the maximum x value to display in the chart. Includes xAxisPadding if set. * @returns {*}
()
| 858 | * @returns {*} |
| 859 | */ |
| 860 | xAxisMax () { |
| 861 | const m = max(this.data(), e => this.keyAccessor()(e)); |
| 862 | return utils.add(m, this._xAxisPadding, this._xAxisPaddingUnit); |
| 863 | } |
| 864 | |
| 865 | /** |
| 866 | * Calculates the minimum y value to display in the chart. Includes yAxisPadding if set. |
no test coverage detected