Create Custom radio button

need to custom radio button like entryFactory.textField @nikku could you help me how to do it.

You will have to create a Camunda Modeler plugin for this, and extend the properties panel within (cf. this example). The async continuations entries are a good example for checkboxes.

Hello niklas thanks for your response can i use radio button like this way

group.entries.push({
id: ‘condition’,
label: ‘Condition’,
html: <icon></icon><input id="camunda-20" type="radio" name="Condition"/> ,
get: function(element,data) {

}

if it is possible it will be helpful for me .

You can define valid html via the html property, that’s correct. Did you try out whether it works?