* @public * @param dim by default 0. * @param dataIndexInside by default `currDataIndexInside`.
(dim?: DimensionLoose, dataIndexInside?: number)
| 758 | * @param dataIndexInside by default `currDataIndexInside`. |
| 759 | */ |
| 760 | function value(dim?: DimensionLoose, dataIndexInside?: number): ParsedValue { |
| 761 | dataIndexInside == null && (dataIndexInside = currDataIndexInside); |
| 762 | return data.getStore().get(data.getDimensionIndex(dim || 0), dataIndexInside); |
| 763 | } |
| 764 | |
| 765 | /** |
| 766 | * @public |
nothing calls this directly
no test coverage detected
searching dependent graphs…