* @param Default 'value'. can be 'a', 'b', 'c', 'd', 'e'.
(this: Host, dimension?: DimensionLoose)
| 565 | * @param Default 'value'. can be 'a', 'b', 'c', 'd', 'e'. |
| 566 | */ |
| 567 | getValue(this: Host, dimension?: DimensionLoose): ParsedValue { |
| 568 | const data = this[hostName][dataName]; |
| 569 | return data.getStore().get(data.getDimensionIndex(dimension || 'value'), this.dataIndex); |
| 570 | }, |
| 571 | // TODO: TYPE stricter type. |
| 572 | setVisual(this: Host, key: string | Dictionary<any>, value?: any) { |
| 573 | this.dataIndex >= 0 |
no test coverage detected
searching dependent graphs…