5

I have a list of "labels" of certain categories. Currently, only top 3 labels are displayed in the category (see picture attached). Each of the purple circles is a category that it displayed in its own row, so you can think of each row as being a different category. The blue/orange colors on the labels are the 2 types of the labels in that category. Each of the labels when clicked open a new card with details of that label.

There can be any number of labels for a category. The problem here is that there can be max 3 labels that can be shown in any case. What would be the best way to visually indicate that there are more labels present in that category for each type.

example

Let me know if any more information is required.

Thanks

2 Answers2

6

Try being explicit with how many can't be shown across a label type.

I'm not familiar with your constraints and requirements, but if you need to keep these in a list with a max height, I would first make the list easier to scan.

enter image description here

Try frontloading the category along the left, so we can scan vertically right away.

It seems there are alot of categories, consider a label if space permits, as icons alone can be a memory tax on the user.

From the Nielsen Norman Group:

A user’s understanding of an icon is based on previous experience. Due to the absence of a standard usage for most icons, text labels are necessary to communicate the meaning and reduce ambiguity.

You also have very high visual contrast which you can take down a bit, and use links to show how many are not being shown for a particular label type.

Mike M
  • 24,650
  • 1
  • 57
  • 65
3

Ideating off of the answer provided Mike, here are some of my thoughts on the same.

  1. Since you are working on a mobile device, real estate space is of utmost importance and thus the category name could be moved to the top instead of being on the left hand side.
  2. The number of extra labels can be shown in a neutral colored button format or in the form of a link as mentioned in the answer by Mike.
  3. Expanding the labels inline as a dropdown could be an option Phone category list
harshikerfuffle
  • 1,037
  • 5
  • 23