Question T3350
Visible to All Users

Custom widget: Emotions Ratings

created 5 years ago

How add tooltip for idivdual emoji expression.

Comments (1)

    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

    Answers approved by surveyjs Support

    created 2 years ago

    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/.

    Clipboard-File-1.png

    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" } ] } ] } ] }

    image

    I hope this information helps. Please let us know if you have any questions.