Common.Title
Subclasses
Defines a title.
Sample configuration:
var titleConfig = {
text: 'Title Text',
font: '40px sans-serif',
lineWidth: 1,
strokeStyle: 'black',
fillStyle: 'yellow'
}
Example usage:
$('#selector').jqChart({
title: {
text: 'Chart Title',
font: '40px sans-serif',
lineWidth: 1,
strokeStyle: 'black',
fillStyle: 'yellow'
},
series: [
{
type: 'column',
data: [['a', 70], ['b', 40], ['c', 85],
['d', 50], ['e', 25], ['f', 40]]
}
]
}