Comment puis-je créer plus d'espace en haut des graphiques ?
Maintenant, j'obtiens ceci :
Mais c'est ce que je veux :
Voici mon code JS :
$("table.chart").each(function() {
var colors = [];
$("table.chart thead th:not(:first)").each(function() {
colors.push($(this).css("color"));
});
$(this).graphTable({
series: 'columns',
position: 'replace',
width: '100%',
height: '200px',
colors: colors
}, {
xaxis: {
tickSize: 1
}
});
});