| Name | Type | Default | 
                
                    | animationShowDelay | Number | 250 | 
                
                    | 
                            
                                Sets or gets the delay of the fade animation when the Radio Button is going to be checked.
                             Code examples
                                Set the animationShowDelayproperty. $('#jqxRadioButton').jqxRadioButton({ animationShowDelay: 200 }); 
 
                                Get the animationShowDelayproperty. var animationShowDelay = $('#jqxRadioButton').jqxRadioButton('animationShowDelay'); 
 | 
                
                    | animationHideDelay | Number | 300 | 
                
                    | 
                            
                                Sets or gets the delay of the fade animation when the Radio Button is going to be unchecked.
                             Code examples
                                Set the animationHideDelayproperty. $('#jqxRadioButton').jqxRadioButton({ animationHideDelay: 200 }); 
 
                                Get the animationHideDelayproperty. var animationHideDelay = $('#jqxRadioButton').jqxRadioButton('animationHideDelay'); 
 | 
                
                    | boxSize | String | "13px" | 
                
                    | 
                            
                                Sets or gets the Radio Button's size.
                             Code examples
                                Set the boxSizeproperty. $('#jqxRadioButton').jqxRadioButton({ boxSize:"15px" }); 
 
                                Get the boxSizeproperty. var boxSize = $('#jqxRadioButton').jqxRadioButton('boxSize'); 
 | 
                
                    | checked | Boolean | false | 
                
                    | 
                            
                                Sets or gets whether the radio button is checked.
                             Code examples
                                Set the checkedproperty. $('#jqxRadioButton').jqxRadioButton({ checked:true }); 
 
                                Get the checkedproperty. var checked = $('#jqxRadioButton').jqxRadioButton('checked'); 
 | 
                
                    | disabled | Boolean | false | 
                
                    | 
                            
                                Sets or gets whether the Radio Button is disabled.
                             Code examples
                                Set the disabledproperty. $('#jqxRadioButton').jqxRadioButton({ disabled:true }); 
 
                                Get the disabledproperty. var disabled = $('#jqxRadioButton').jqxRadioButton('disabled');
 | 
                
                    | enableContainerClick | Boolean | true | 
                
                    | 
                            
                                Sets or gets whether the clicks on the container are handled as clicks on the rounded button.
                             Code examples
                                Set the enableContainerClickproperty. $('#jqxRadioButton').jqxRadioButton({enableContainerClick :true }); 
 
                                Get the enableContainerClickproperty. var enableContainerClick = $('#jqxRadioButton').jqxRadioButton('enableContainerClick'); 
 | 
                
                    | groupName | String | "" | 
                
                    | 
                            
                                Sets or gets the group name. When this property is set, checking a radio button from the group, will uncheck only the radio buttons from the same group.
                             Code examples
                                Set the groupNameproperty. $('#jqxRadioButton').jqxRadioButton({groupName :"Panel" }); 
 
                                Get the groupNameproperty. var groupName = $('#jqxRadioButton').jqxRadioButton('groupName'); 
 | 
                
                    | hasThreeStates | Boolean | false | 
                
                    | 
                            
                                Sets or gets whether the radio button has 3 states - checked, unchecked and indeterminate.
                             Code examples
                                Set the hasThreeStatesproperty. $('#jqxRadioButton').jqxRadioButton({ hasThreeStates:true }); 
 
                                Get the hasThreeStatesproperty. var hasThreeStates = $('#jqxRadioButton').jqxRadioButton('hasThreeStates'); 
 | 
                
                    | height | Number/String | null | 
                
                    | 
                            
                                Sets or gets the jqxRadioButton's height.
                             Code examples
                                Set the heightproperty. $('#jqxRadioButton').jqxRadioButton({height:"400px"});
 
                                Get the heightproperty. var height = $('#jqxRadioButton').jqxRadioButton('height');
 | 
                
                    | rtl | Boolean | false | 
                
                    | 
                            Sets or gets a value indicating whether widget's elements are aligned to support locales using right-to-left fonts. Code example
                                Set the rtlproperty. $('#jqxRadioButton').jqxRadioButton({rtl : true}); 
 
                                Get the rtlproperty. var rtl = $('#jqxRadioButton').jqxRadioButton('rtl'); 
 | 
                
                    | theme | String | '' | 
                
                    | 
                            
                                Sets the widget's theme.
                             
                            jQWidgets uses a pair of css files - jqx.base.css and jqx.[theme name].css. The base stylesheet creates the styles related to the widget's layout like margin, padding, border-width, position. The second css file applies the widget's colors and backgrounds. The jqx.base.css should be included before the second CSS file.
                                                                             In order to set a theme, you need to do the following:
                                                                              | 
                
                    | width | Number/String | null | 
                
                    | 
                            
                                Sets or gets the jqxRadioButton's width.
                             Code examples
                                Set the widthproperty. $('#jqxRadioButton').jqxRadioButton({width:"200px"});
 
                                Get the widthproperty. var width = $('#jqxRadioButton').jqxRadioButton('width');
 | 
                
                    |  | 
                
                    | checked | Event |  | 
                
                    | 
                            
                                This event is triggered when the Radio Button is checked.
                             Code examples
                                Bind to the checkedevent by type: jqxRadioButton. $('#jqxRadioButton').on('checked', function (event) { // Some code here. }); 
 | 
                
                    | change | Event |  | 
                
                    | 
                            
                                This is triggered when the Radio Button's state changes from one state to another.
                             Code examples
                                Bind to the changeevent by type: jqxRadioButton. $('#jqxRadioButton').on('change', function (event) { var checked = event.args.checked;  var type = event.args.type; // keyboard, mouse or null depending on how the value was changed. }); 
 | 
                
                    | unchecked | Event |  | 
                
                    | 
                            
                                This event is triggered when the Radio Button is unchecked.
                             Code examples
                                Bind to the uncheckedevent by type: jqxRadioButton. $('#jqxRadioButton').on('unchecked', function (event) { // Some code here. }); 
 | 
                
                    |  | 
                
                    | check | Method |  | 
                
                    | 
                            
                                Checks the radio button.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                                Invoke the checkmethod. $('#jqxRadioButton').jqxRadioButton('check');
 | 
                
                    | disable | Method |  | 
                
                    | 
                            
                                Disables the radio button.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                                Invoke the disablemethod. $('#jqxRadioButton').jqxRadioButton('disable');
 | 
                
                    | destroy | Method |  | 
                
                    | 
                            
                                Destroys the widget.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                                Invoke the destroythod. $('#jqxRadioButton').jqxRadioButton('destroy'); 
 | 
                
                    | enable | Method |  | 
                
                    | 
                            
                                Enables the radio button.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                                Invoke the enablemethod. $('#jqxRadioButton').jqxRadioButton('enable');
 | 
                
                    | focus | Method |  | 
                
                    | 
                            
                                Focuses the widget.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                                Invoke the focusmethod. $('#jqxRadioButton').jqxRadioButton('focus'); 
 | 
                
                    | render | Method |  | 
                
                    | 
                            
                                Renders the widget.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                                Invoke the rendermethod. $('#jqxRadioButton').jqxRadioButton('render'); 
 | 
                
                    | uncheck | Method |  | 
                
                    | 
                            
                                Unchecks the radio button.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code example
                                Invoke the uncheckmethod. $('#jqxRadioButton').jqxRadioButton('uncheck');
 | 
                
                    | val | Method |  | 
                
                    | 
                            
                                Sets or gets the value.
                             
                                
                                    
                                        Return Value 
                                Boolean
                                            | Parameter | Type | Description |  
                                            | value(optional) | Boolean |  |  Code example
                                Invoke the valmethod. 
                            // Get the value.
                                                                              var value = $("#jqxRadioButton").jqxRadioButton('val');
 
                            // Get the value using jQuery's val()
                                                                              var value = $("#jqxRadioButton").val();
 
                            // Set value.
                                                                              $("#jqxRadioButton").jqxRadioButton('val', true);
 
                            // Set value using jQuery's val().
                                                                              $("#jqxRadioButton").val(true);
 |