Wijmo UI for the Web
clusterRadius Option
wijmo.chart.wijbarchart Namespace > options type : clusterRadius Option

Sets the number of pixels by which to round the corner-radius for the bars in the chart.

Type: Number

Default value: 0

Syntax
$(function () {
    
    // Get value
    var returnsValue; // Type:  number
    returnsValue = $(".selector").wijbarchart("option", "clusterRadius");
    
    // Set value
    var newValue; // Type:  number
    $(".selector").wijbarchart("option", "clusterRadius", newValue);
        
});
var clusterRadius : number;
Example
$("#barchart").wijbarchart({
   clusterRadius: 5
});
Remarks
The amount of rounding this produces depends on the size of the bar. For example, with a clusterRadius of 3, a small bar might look like a ball on the end, while a very large bar might only show a slight rounding of the corners.
See Also

Reference

options type
wijbarchart Method