* Get type and calculation info of particular dimension * @param dim * Dimension can be concrete names like x, y, z, lng, lat, angle, radius * Or a ordinal number. For example getDimensionInfo(0) will return 'x' or 'lng' or 'radius'
(dim: SeriesDimensionLoose)
| 462 | * Or a ordinal number. For example getDimensionInfo(0) will return 'x' or 'lng' or 'radius' |
| 463 | */ |
| 464 | getDimensionInfo(dim: SeriesDimensionLoose): SeriesDimensionDefine { |
| 465 | // Do not clone, because there may be categories in dimInfo. |
| 466 | return this._getDimInfo(this.getDimension(dim)); |
| 467 | } |
| 468 | |
| 469 | /** |
| 470 | * If `dimName` if from outside of `SeriesData`, |
no test coverage detected