* Get an array of each chart instance in the given group. * If no group is provided, the charts in the default group are returned. * @param {String} [group] Group name * @returns {Array }
(group)
| 94 | * @returns {Array<Object>} |
| 95 | */ |
| 96 | list (group) { |
| 97 | group = this._initializeChartGroup(group); |
| 98 | return (this._chartMap)[group]; |
| 99 | } |
| 100 | } |
| 101 | |
| 102 | /** |
no test coverage detected