| Name | Type | Default | 
                
                    | animationDuration | Function | null | 
                
                    | 
                            
                                Sets ot gets the bulletcharts's animationDuration.
                             Possible valuesnumber 'slow' 'fast' Code examples
                                Set the animationDurationproperty. $("#jqxBulletChart").jqxBulletChart( { animationDuration:'slow'});
 
                                Get the animationDurationproperty. var animationDuration = $('#jqxBulletChart').jqxBulletChart('animationDuration');
 | 
                
                    | barSize | Array | 50% | 
                
                    | 
                            
                                Sets ot gets the bulletcharts's bar size.
                             Code examples
                                Set the barSizeproperty. $("#jqxBulletChart").jqxBulletChart({ barSize: '40%' });
 
                                Get the barSizeproperty. var barSize = $('#jqxBulletChart').jqxBulletChart('barSize');
 | 
                
                    | description | String | 'Description' | 
                
                    | 
                            
                                Sets ot gets the bulletcharts's description.
                             Code examples
                                Set the descriptionproperty. $("#jqxBulletChart").jqxBulletChart( { description:'New description'});
 
                                Get the descriptionproperty. var description = $('#jqxBulletChart').jqxBulletChart('description');
 | 
                
                    | disabled | Boolean | false | 
                
                    | 
                            
                                Disables the bullet chart.
                             Code examples
                                Set the disabledproperty. $("#jqxBulletChart").jqxBulletChart( { disabled:true});
 
                                Get the disabledproperty. var disabled = $('#jqxBulletChart').jqxBulletChart('disabled');
 | 
                
                    | height | Number/String | 100 | 
                
                    | 
                            
                                Sets ot gets the bulletcharts's height.
                             Code examples
                                Set the heightproperty. $("#jqxBulletChart").jqxBulletChart({ height: 120 });
 
                                Get the heightproperty. var height = $('#jqxBulletChart').jqxBulletChart('height');
 | 
                
                    | labelsFormat | String | null | 
                
                    | 
                            
                                Sets ot gets the bulletcharts's labelsFormat.
                             Possible values:"null" "d"-decimal numbers "f"- floating-point numbers "n"- integer numbers "c" - currency numbers "p"- percentage numbers Code examples
                                Set the labelsFormatproperty. $("#jqxBulletChart").jqxBulletChart( {  labelsFormat:'c'});
 
                                Get the labelsFormatproperty. var labelsFormat = $('#jqxBulletChart').jqxBulletChart('labelsFormat');
 | 
                
                    | labelsFormatFunction | Function | null | 
                
                    | 
                            
                                Sets ot gets the bulletcharts's labelsFormatFunction.
                             Code examples
                                Set the labelsFormatFunctionproperty. $("#jqxBulletChart").jqxBulletChart( {   labelsFormatFunction: function (value, position) { if (position == "near") { return value + " °C";} else { return value; }; }});
 
                                Get the labelsFormatFunctionproperty. var labelsFormatFunction = $('#jqxBulletChart').jqxBulletChart('labelsFormatFunction');
 | 
                
                    | orientation | String | "horizontal" | 
                
                    | 
                            
                                Sets ot gets the bulletcharts's orientation.
                             Possible values:"horizontal" "vertical" Code examples
                                Set the orientationproperty. $("#jqxBulletChart").jqxBulletChart( {  width:100, height:500,description:'vertical'});
 
                                Get the orientationproperty. var orientation = $('#jqxBulletChart').jqxBulletChart('orientation');
 | 
                
                    | pointer | Object | { value: 65, label: "Value", size: "25%", color: "" } | 
                
                    | 
                            
                                Sets ot gets the bulletcharts's pointer.
                             Code examples
                                Set the pointerproperty. $("#jqxBulletChart").jqxBulletChart({ pointer: {value: 270, label: "Value", thickness: 8, color: "White" }});
 
                                Get the pointerproperty. var pointer = $('#jqxBulletChart').jqxBulletChart('pointer');
 | 
                
                    | rtl | Boolean | false | 
                
                    | 
                            
                                Sets or gets a value indicating whether widget's elements are aligned to support locales using right-to-left fonts.
                             Code examples
                                Set the rtlproperty. $("#jqxBulletChart").jqxBulletChart( { rtl:true});
 
                                Get the rtlproperty. var rtl = $('#jqxBulletChart').jqxBulletChart('rtl');
 | 
                
                    | ranges | Array | [{ startValue: 0, endValue: 50, color: "#000000", opacity: 0.7 }, { startValue: 50, endValue: 80, color: "#000000", opacity: 0.5 }, { startValue: 80, endValue: 100, color: "#000000", opacity: 0.3}] | 
                
                    | 
                            
                                Sets ot gets the bulletcharts's range.
                             Possible values'startValue'-the value from which the range will start 'endValue'-the value where the current range will end 'color'- the colour of the range 'opacity'- the opacity of the range Code examples
                                Set the rangesproperty. $("#jqxBulletChart").jqxBulletChart({ranges: [{startValue: 0, endValue: 200,color: "Blue", opacity: 0.6}, { startValue: 200, endValue: 250, color: "Black", opacity: 0.3}] });
 
                                Get the rangesproperty. var ranges = $('#jqxBulletChart').jqxBulletChart('ranges');
 | 
                
                    | showTooltip | Boolean | true | 
                
                    | 
                            
                                Sets ot gets the bulletcharts's showTooltip.Requires jqxtooltip.js
                             Code examples
                                Set the showTooltipproperty. $("#jqxBulletChart").jqxBulletChart( { showTooltip:false});
 
                                Get the showTooltipproperty. var showTooltip = $('#jqxBulletChart').jqxBulletChart('showTooltip');
 | 
                
                    | target | Object | { value: 85, label: "Target", size: 4, color: "" }; | 
                
                    | 
                            
                                Sets ot gets the bulletcharts's target.
                             Code examples
                                Set the targetproperty. $("#jqxBulletChart").jqxBulletChart({ target: {value: 270, label: "Value", thickness: 8, color: "White" }});
 
                                Get the targetproperty. var target = $('#jqxBulletChart').jqxBulletChart('target');
 | 
                
                    | ticks | Object | { position: "far", interval: 20, size: 10 } | 
                
                    | 
                            
                                Sets ot gets the bulletcharts's ticks.
                             Possible values for ticks.position"near"- positions the ticks at the top of the ranges bar if the orientation is set to "horizontal" and at the left if the orientation is set to "vertical"; "far" - positions the ticks at the bottom of the ranges bar if the orientation is set to "horizontal" and at the right if the orientation is set to "vertical"; "both" "none" Code examples
                                Set the ticksproperty. $("#jqxBulletChart").jqxBulletChart({ticks: { position: "near", interval: 20,size: 10  }});
 
                                Get the ticksproperty. var ticks = $('#jqxBulletChart').jqxBulletChart('ticks');
 | 
                
                    | title | String | 'Title' | 
                
                    | 
                            
                                Sets ot gets the bulletcharts's title.
                             Code examples
                                Set the titleproperty. $("#jqxBulletChart").jqxBulletChart( { title:'New title'});
 
                                Get the titleproperty. var title = $('#jqxBulletChart').jqxBulletChart('title');
 | 
                
                    | tooltipFormatFunction | Function | null | 
                
                    | 
                            
                                Sets ot gets the bulletcharts's tooltipFormatFunction.Requires jqxtooltip.js
                             Code examples
                                Set the tooltipFormatFunctionproperty. $("#jqxBulletChart").jqxBulletChart( { tooltipFormatFunction: function (pointerValue, targetValue) { return "Current: " + pointerValue + "; Average: " + targetValue + "";}});
 
                                Get the tooltipFormatFunctionproperty. var tooltipFormatFunction = $('#jqxBulletChart').jqxBulletChart('tooltipFormatFunction');
 | 
                
                    | width | Number/String | 500 | 
                
                    | 
                            
                                Sets ot gets the bulletcharts's width.
                             Code examples
                                Set the widthproperty. $("#jqxBulletChart").jqxBulletChart({ width: 500 });
 
                                Get the widthproperty. var width = $('#jqxBulletChart').jqxBulletChart('width');
 | 
                
                    |  | 
			
				| change | Event |  | 
                
                    | 
                            
                                This event is triggered when the value is changed.
                             Code examples
                                Bind to the changeevent by type: jqxBulletChart. $('#jqxBulletChart').on('change', function () { // Some code here. }); 
 | 
                
                    |  | 
                
                    | destroy | Method |  | 
                
                    | 
                            
                                Destroy  the jqxBulletChart widget.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                                Invoke the destroymethod. $('#jqxBulletChart').jqxBulletChart('destroy'); 
 | 
                
                    | render | Method |  | 
                
                    | 
                            
                                Renders the jqxBulletChart widget.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                                Invoke the rendermethod. $('#jqxBulletChart').jqxBulletChart('render'); 
 | 
                
                    | refresh | Method |  | 
                
                    | 
                            
                                Refresh the jqxBulletChart widget.
                             
                                
                                    
                                        Return Value 
                                None
                                            | Parameter | Type | Description |  
                                            | None |  |  |  Code examples
                                Invoke the refreshmethod. $('#jqxBulletChart').jqxBulletChart('refresh'); 
 | 
                
                    | val | Method |  | 
                
                    | 
                            
                                Sets or gets the selected value.
                             
                                
                                    
                                        Return Value 
                                Number
                                            | Parameter | Type | Description |  
                                            | value(optional) | Number |  |  Code examples
                                Invoke the valmethod. //Get the value. var value = $("#jqxBulletChart").jqxBulletChart('val'); 
 //Get the value using jQuery's val()  var value = $("#jqxBulletChart").val(); 
 //Set value.  $("#jqxBulletChart").jqxBulletChart('val', 50); 
 //Set value using jQuery's val().  $("#jqxBulletChart").val(50); 
 |