(ecIns, ecModel, api, payload)
| 28630 | } |
| 28631 | |
| 28632 | function render(ecIns, ecModel, api, payload) { |
| 28633 | |
| 28634 | renderComponents(ecIns, ecModel, api, payload); |
| 28635 | |
| 28636 | each(ecIns._chartsViews, function (chart) { |
| 28637 | chart.__alive = false; |
| 28638 | }); |
| 28639 | |
| 28640 | renderSeries(ecIns, ecModel, api, payload); |
| 28641 | |
| 28642 | // Remove groups of unrendered charts |
| 28643 | each(ecIns._chartsViews, function (chart) { |
| 28644 | if (!chart.__alive) { |
| 28645 | chart.remove(ecModel, api); |
| 28646 | } |
| 28647 | }); |
| 28648 | } |
| 28649 | |
| 28650 | function renderComponents(ecIns, ecModel, api, payload, dirtyList) { |
| 28651 | each(dirtyList || ecIns._componentsViews, function (componentView) { |
no test coverage detected