Common.Border
Defines a border.
Sample configuration:
var borderConfig = {
visilbe: true,
strokeStyle : 'red',
lineWidth: 4,
cornerRadius : 12,
padding : 6
}
Example usage:
$(document).ready(function () {
$('#selector').jqChart({
title: { text: 'Chart Border' },
border: {
cornerRadius: 20,
lineWidth: 4,
strokeStyle: '#6ba851'
},
series: [
{
type: 'column',
data: [['A', 70], ['B', 40], ['C', 85],
['D', 50], ['E', 25], ['F', 40]]
}
]
}
}
Defined By
Config options
Specifies whether to ignore the border offset set there for aesthetics. ...
Specifies whether to ignore the border offset set there for aesthetics.
NOTE: When you ignore the border offset, you will need to put bigger border paddings on the sides that you need to adjust.
Defaults to: false