* Set layout of single data item
(
idx: number,
layout: (M extends true ? Dictionary<any> : any),
merge?: M
)
| 1297 | * Set layout of single data item |
| 1298 | */ |
| 1299 | setItemLayout<M = false>( |
| 1300 | idx: number, |
| 1301 | layout: (M extends true ? Dictionary<any> : any), |
| 1302 | merge?: M |
| 1303 | ): void { |
| 1304 | this._itemLayouts[idx] = merge |
| 1305 | ? zrUtil.extend(this._itemLayouts[idx] || {}, layout) |
| 1306 | : layout; |
| 1307 | } |
| 1308 | |
| 1309 | /** |
| 1310 | * Clear all layout of single data item |
no outgoing calls
no test coverage detected