* Calculates the minimum x value to display in the chart. Includes xAxisPadding if set. * @returns {*}
()
| 849 | * @returns {*} |
| 850 | */ |
| 851 | xAxisMin () { |
| 852 | const m = min(this.data(), e => this.keyAccessor()(e)); |
| 853 | return utils.subtract(m, this._xAxisPadding, this._xAxisPaddingUnit); |
| 854 | } |
| 855 | |
| 856 | /** |
| 857 | * Calculates the maximum x value to display in the chart. Includes xAxisPadding if set. |
no test coverage detected