Net Promoter Score

Is it possible to create the below using the single choice field. Im struggling as it only lets me show maximum of 6 items in 1 row.

Dear @hutchisoni,
No problem, just use the following JS to create more columns for the field:

fd.spRendered(function() {
    fd.field('ChoiceRadio').columnsNumber = 11;
});

I assume I remove the sp from rendered as its not a sharepoint form and also replace ChoiceRadio with the actual fieldname. Even when I do this is still does not work?

Dear @hutchisoni,
Please, try it like this:

fd.rendered(function() {
    fd.field('SingleChoice2').columnsNumber = 11;
});

The lower case in rendered, and the missing n in columnsNumber are probably responsible for the issue.