(
ecModel: GlobalModel,
finder: ParsedModelFinder,
value: Parameters<Matrix['dataToLayout']>[0],
opt?: Parameters<Matrix['dataToLayout']>[1],
)
| 290 | } |
| 291 | |
| 292 | convertToLayout( |
| 293 | ecModel: GlobalModel, |
| 294 | finder: ParsedModelFinder, |
| 295 | value: Parameters<Matrix['dataToLayout']>[0], |
| 296 | opt?: Parameters<Matrix['dataToLayout']>[1], |
| 297 | ): ReturnType<Matrix['dataToLayout']> | NullUndefined { |
| 298 | const coordSys = getCoordSys(finder); |
| 299 | return coordSys === this ? coordSys.dataToLayout(value, opt) : undefined; |
| 300 | } |
| 301 | |
| 302 | convertFromPixel( |
| 303 | ecModel: GlobalModel, |
nothing calls this directly
no test coverage detected