こんにちは、jqPlot を使用して生成された円グラフを取得しました。しかし、jqPlot 領域はページの幅全体をカバーしています。ページの左半分だけにそれを示したいと思います。これを行うために少し助けてください。私のコードは以下のとおりです-
var plot2 = jQuery.jqplot ('month_record', [data],
{
title: "Records saved per month in the previous year",
seriesDefaults: {
// Make this a pie chart.
renderer: jQuery.jqplot.PieRenderer,
rendererOptions: {
// Put data labels on the pie slices.
showDataLabels: true,
startAngle:-90,
dataLabels: monthRecord,
dataLabelFormatString:'%d',
}
},
legend: { show: true, location: 'e' }
}
);