avatars


avatarsArray<Avatar>

Sets or gets a list of avatars to contain in the avatar group.

Setting the avatars property sets all the avatars available in the avatar group.

Getting the avatars property returns the current list of avatars available in the avatar group.

Each avatar contains a either an image or initials, which is what the site visitor sees.

You can't modify the avatars data array in-place. To add, change, or remove individual avatars:

  1. Store the value of the avatars property in a variable.
  2. Make changes to the array.
  3. Reset the avatars property with the modified array.

Note: Setting the avatars property clears the values that don't match the new avatars.

Did this help?