$(function () { // Get value var returnsValue; // Type: any returnsValue = $(".selector").wijbarchart("option", "width"); // Set value var newValue; // Type: any $(".selector").wijbarchart("option", "width", newValue); });
var width : any;
Sets the width of the chart in pixels.
Type: Number
Default value: null
$(function () { // Get value var returnsValue; // Type: any returnsValue = $(".selector").wijbarchart("option", "width"); // Set value var newValue; // Type: any $(".selector").wijbarchart("option", "width", newValue); });
var width : any;
$("#barchart").wijbarchart({
width: 600
});