* Formatter for value labels * @method Chart.Ticks.formatters.values * @param value the value to display * @return {string|string[]} the label to display
(value)
| 14 | * @return {string|string[]} the label to display |
| 15 | */ |
| 16 | values(value) { |
| 17 | return isArray(value) ? /** @type {string[]} */ (value) : '' + value; |
| 18 | }, |
| 19 | |
| 20 | /** |
| 21 | * Formatter for numeric ticks |