(seriesModel: ParallelSeriesModel)
| 198 | } |
| 199 | |
| 200 | function makeSeriesScope(seriesModel: ParallelSeriesModel): ParallelDrawSeriesScope { |
| 201 | let smooth = seriesModel.get('smooth', true); |
| 202 | smooth === true && (smooth = DEFAULT_SMOOTH); |
| 203 | smooth = numericToNumber(smooth); |
| 204 | eqNaN(smooth) && (smooth = 0); |
| 205 | |
| 206 | return { smooth }; |
| 207 | } |
| 208 | |
| 209 | function updateElCommon( |
| 210 | el: graphic.Polyline, |
no test coverage detected
searching dependent graphs…