0

I am working on a project that has a slider that allows a user to select their preference between two things (let's call them A and B).

It is perfectly possible for them to get both A and B but the slider helps us identify their preferences so we can tune their experience. Both A and B are desirable, so we cannot give them two sliders for A and B respectively.

However some test users are finding that it feels very absolute, that they can't have A and B.

What is an alternative to a traditional slider (see example below) that can help eliminate this feeling?

slider example

3
  • Does the slider contain steps? If yes, how many?
    – jazZRo
    Commented Jun 7 at 9:24
  • @jazZRo it doesn't contain steps, it can take any value in between (which is good for the application) Commented Jun 7 at 16:38
  • That's what I suspected. See my answer.
    – jazZRo
    Commented Jun 8 at 6:24

3 Answers 3

3

A checkbox.

A slider shouldn't be used for this since it's meant for gradation, like 1, 2, 3...10 or Dislike, Somewhat dislike, Neutral, Somewhat like it, Love it.

However, if you want a gradation of how much of A and how much of B the user wants, then you could use two sliders, one for A and one for B.

Keep in mind this answer is based on insufficient information, and I have no idea what you want to do. Quite honestly, I think it's better to ask, "What do you want?" and offer exactly that.

1
  • Thank you for your response. The issue is that both A and B are desirable qualities, so they will select maximum on both if we give them two sliders. We need them to select somewhere on a range between A and B, so we can decide what to optimise for them. It's about their preference, rather than what they actually get. A checkbox and 2 sliders don't allow the output to be a balance of A or B (something in between). Commented Jun 7 at 8:21
3

You could use a variant of the Likert Scale. People are familiar with this from filling in any number of surveys.

enter image description here

You could have any number of nodes here, including having an even number of them (which prevents people from sitting on the fence and just picking the middle). But it depends what you're actually going to do with this data. 5 points is generally useful enough for most situations.

1

You need a center option like this:

enter image description here

If the slider doesn't contain steps, be sure users feel comfortable setting a loose value between A and B and that it's still valuable information. But that aside, you always need a "way out" control or value. You can for example also provide a control that enables or disables this slider. It can be a button, switch, checkbox etc. as long as it has a clear label like "None apply" or "Both apply".

Not the answer you're looking for? Browse other questions tagged or ask your own question.