(key: string | Dictionary<any>, value?: any)
| 254 | setVisual(key: string, value: any): void; |
| 255 | setVisual(obj: Dictionary<any>): void; |
| 256 | setVisual(key: string | Dictionary<any>, value?: any) { |
| 257 | this.dataIndex >= 0 |
| 258 | && this.hostTree.data.setItemVisual(this.dataIndex, key as any, value); |
| 259 | } |
| 260 | |
| 261 | /** |
| 262 | * Get item visual |
nothing calls this directly
no test coverage detected