(params, data)
| 40 | |
| 41 | return { |
| 42 | progress(params, data) { |
| 43 | coordSys.eachActiveState(data, function (activeState, dataIndex) { |
| 44 | let opacity = opacityMap[activeState]; |
| 45 | if (activeState === 'normal' && data.hasItemOption) { |
| 46 | const itemOpacity = data.getItemModel<ParallelSeriesOption>(dataIndex).get( |
| 47 | opacityAccessPath, true |
| 48 | ); |
| 49 | itemOpacity != null && (opacity = itemOpacity); |
| 50 | } |
| 51 | const existsStyle = data.ensureUniqueItemVisual(dataIndex, 'style'); |
| 52 | existsStyle.opacity = opacity; |
| 53 | }, params.start, params.end); |
| 54 | } |
| 55 | }; |
| 56 | } |
| 57 | }; |
nothing calls this directly
no test coverage detected
searching dependent graphs…