0

こんにちは、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' }
}

);

4

1 に答える 1

3

jqPlot は、コンテナーの高さ/幅を使用して<div>、プロットの寸法を設定します。

<div id="chart" style="width: 400px; height: 260px;" class="jqplot-target">
    <!-- plot will render here with the above dimensions -->
</div>
于 2012-08-14T15:21:57.810 に答える