(ecModel: GlobalModel)
| 25 | export const graphCircularLayoutStageHandler = createSimpleOverallStageHandler(SERIES_TYPE_GRAPH, graphCircularLayout); |
| 26 | |
| 27 | function graphCircularLayout(ecModel: GlobalModel) { |
| 28 | ecModel.eachSeriesByType('graph', function (seriesModel: GraphSeriesModel) { |
| 29 | if (seriesModel.get('layout') === 'circular') { |
| 30 | circularLayout(seriesModel, 'symbolSize'); |
| 31 | } |
| 32 | }); |
| 33 | } |
nothing calls this directly
no test coverage detected