5

jqplot を使用して 2 行の折れ線グラフを作成しました。1 つの線は最大値を表し、もう 1 つの線は最小値を表します。コードの凡例が正しく表示されず、y 軸のラベルが y 軸の目盛りと重なっています。何が間違っていますか? ご協力いただきありがとうございます!

[編集] Jqplot のバージョンは jquery.jqplot.1.0.0b2_r1012 です

私のコードはこのチャートを表示します:

私のコードはこのチャートを表示します

この画像のような伝説が欲しい

これが私のコードです:

<link rel="stylesheet" type="text/css" hrf="../plugins/jqplot/jquery.jqplot.min.css" />
<script type="text/javascript" src="../plugins/jqplot/jquery.min.js"></script>
<script type="text/javascript" src="../plugins/jqplot/jquery.jqplot.min.js"></script>
<script type="text/javascript" src="../plugins/jqplot/plugins/jqplot.canvasTextRenderer.min.js"></script>
<script type="text/javascript" src="../plugins/jqplot/plugins/jqplot.canvasAxisLabelRenderer.min.js"></script>
<script type="text/javascript" src="../plugins/jqplot/plugins/jqplot.enhancedLegendRenderer.min.js"></script>
<script type="text/javascript" src="../plugins/jqplot/plugins/jqplot.canvasOverlay.min.js"></script>
<script>
  $(document).ready(function(){               
          var maxPoints86 = [3.000000,4.000000,4.500000,5.000000,7.000000,7.000000,5.500000,8.500000,6.700000,5.200000,4.000000,5.500000,0.200000,7.500000,5.000000,5.200000,5.000000];
          var minPoints86 = [2.000000,1.000000,3.000000,4.000000,5.000000,4.800000,5.000000,6.000000,4.000000,2.500000,2.500000,5.000000,0.100000,6.000000,3.500000,5.000000,5.000000];

          var plot86 = $.jqplot('chart', [maxPoints86, minPoints86], 
          { 
              title:'Errores en facturación',
              axesDefaults: {
                labelRenderer: $.jqplot.CanvasAxisLabelRenderer
              },
              axes: {
                xaxis: {
                  label: "Monthly",
                },
                yaxis: {
                  label: "Percentage"
                }
              },
              legend: {
                show: true,
                location: 'se',
                labels:['Max','Min'],
                showSwatch: true,
                predraw: false,
                placement:"insideGrid",
              },
              series:[ 
                  {
                    lineWidth:5,
                    markerOptions: { style:"circle", size:10 }
                  },
                  {
                    lineWidth:5, 
                    markerOptions: { style:"filledSquare", size:10 }
                  }
              ]
            }
          );

    });
</script>
<div id="chart" style="width:500px;height:300px;"></div>
4

1 に答える 1

5

彼のコメントでマークによって解決されました。私のスタイルシートのリンクが間違っていました。hrefはhrefである必要があります。どうもありがとうマーク!

于 2012-05-17T07:45:53.630 に答える