(
data: SeriesData, dataGroup: graphic.Group, dataIndex: number, dimensions: string[], coordSys: Parallel
)
| 184 | } |
| 185 | |
| 186 | function addEl( |
| 187 | data: SeriesData, dataGroup: graphic.Group, dataIndex: number, dimensions: string[], coordSys: Parallel |
| 188 | ) { |
| 189 | const points = createLinePoints(data, dataIndex, dimensions, coordSys); |
| 190 | const line = new graphic.Polyline({ |
| 191 | shape: {points: points}, |
| 192 | // silent: true, |
| 193 | z2: 10 |
| 194 | }); |
| 195 | dataGroup.add(line); |
| 196 | data.setItemGraphicEl(dataIndex, line); |
| 197 | return line; |
| 198 | } |
| 199 | |
| 200 | function makeSeriesScope(seriesModel: ParallelSeriesModel): ParallelDrawSeriesScope { |
| 201 | let smooth = seriesModel.get('smooth', true); |
no test coverage detected
searching dependent graphs…