How add tooltip for idivdual emoji expression.
Custom widget: Emotions Ratings
Answers approved by surveyjs Support
Hello,
Please be informed that the SurveyJS v1.9.86 release introduces a new Rating scale modes: stars and smileys. A star rating scale offers respondents a series of stars to rate your service or product. A smiley face rating scale uses two to ten emojis to help your customers convey their feelings about your product.
You can check our demo: https://surveyjs.io/form-library/examples/rating-scale/.
To define a tooltip for rate items, create custom items and define their text
property:
Code{
"logoPosition": "right",
"pages": [
{
"name": "page1",
"elements": [
{
"type": "rating",
"name": "question1",
"rateType": "smileys",
"autoGenerate": false,
"rateValues": [
{
"value": 1,
"text": "Very dissatisfied"
},
{
"value": 2,
"text": "Somewhat dissatisfied"
},
{
"value": 3,
"text": "Neutral"
},
{
"value": 4,
"text": "Somewhat satisfied"
},
{
"value": 5,
"text": "Satisfied"
}
]
}
]
}
]
}
I hope this information helps. Please let us know if you have any questions.
Hello,
The emotions rating is a 3rd party widget, here is the documentation from the developer - http://www.yancinerio.com/emotion-ratings
I've not found in this documentation or over the web how to add a tooltip for emotions here.
If you find over the web whether it possible and how to do it, we'll be glad to help you.
Thanks, Serge
SurveyJS Team