* Get or set the label for *Others* slice when slices cap is specified. * @memberof CapMixin * @instance * @param {String} [label="Others"] * @returns {String|CapMixin}
(label)
| 141 | * @returns {String|CapMixin} |
| 142 | */ |
| 143 | othersLabel (label) { |
| 144 | if (!arguments.length) { |
| 145 | return this._othersLabel; |
| 146 | } |
| 147 | this._othersLabel = label; |
| 148 | return this; |
| 149 | } |
| 150 | |
| 151 | /** |
| 152 | * Get or set the grouper function that will perform the insertion of data for the *Others* slice |
no outgoing calls
no test coverage detected