* Hide all stacks on the chart with the given name. * The chart must be re-rendered for this change to appear. * @param {String} stackName * @returns {StackMixin}
(stackName)
| 160 | * @returns {StackMixin} |
| 161 | */ |
| 162 | hideStack (stackName) { |
| 163 | const layer = this._findLayerByName(stackName); |
| 164 | if (layer) { |
| 165 | layer.hidden = true; |
| 166 | } |
| 167 | return this; |
| 168 | } |
| 169 | |
| 170 | /** |
| 171 | * Show all stacks on the chart with the given name. |
no test coverage detected