itemStyleFunc method

LipList itemStyleFunc(
  1. ListStyleFunc fn
)

Sets a function to determine item style per-item.

Implementation

LipList itemStyleFunc(ListStyleFunc fn) {
  _itemStyleFunc = fn;
  _syncRenderer();
  return this;
}