3

以下は、jqplot棒グラフの例に基づくスクリプトの一部です。X軸の目盛りが重なっているので回転させようとしていますが、TickRenderプラグインをインポートしましたが、下のスクリプトに次のコードを追加すると、グラフがまったく印刷されません。

これを正しく行う方法を教えてください。

tickRenderer: $.jqplot.CanvasAxisTickRenderer ,
  tickOptions: {
     angle: -30,
     fontSize: '10pt'
  }

//jqplotスクリプト

$(document).ready(function(){
        $.jqplot.config.enablePlugins = true;
        var s1 = [2314,2053,94,70,2541,2626,2551,2515,2147,116,82,2536,2560,2558,2465,2127,103,73,2546,2554,2583,2527,2235,104,88,2515,2604,2641,2532,2142];
        var ticks = ['01/11/2012','02/11/2012','03/11/2012','04/11/2012','05/11/2012','06/11/2012','07/11/2012','08/11/2012','09/11/2012','10/11/2012','11/11/2012','12/11/2012','13/11/2012','14/11/2012','15/11/2012','16/11/2012','17/11/2012','18/11/2012','19/11/2012','20/11/2012','21/11/2012','22/11/2012','23/11/2012','24/11/2012','25/11/2012','26/11/2012','27/11/2012','28/11/2012','29/11/2012','30/11/2012'];

        plot1 = $.jqplot('chart1', [s1], {
            // Only animate if we're not using excanvas (not in IE 7 or IE 8)..
            animate: !$.jqplot.use_excanvas,
            seriesDefaults:{
                renderer:$.jqplot.BarRenderer,
                pointLabels: { show: true }

            tickRenderer: $.jqplot.CanvasAxisTickRenderer ,
                tickOptions: {
                angle: -30,
                fontSize: '10pt'
                }

            },
            axes: {
                xaxis: {
                    renderer: $.jqplot.CategoryAxisRenderer,
                    ticks: ticks
                }



            },
            highlighter: { show: false }
        });

        $('#chart1').bind('jqplotDataClick',
            function (ev, seriesIndex, pointIndex, data) {
                $('#info1').html('series: '+seriesIndex+', point: '+pointIndex+', data: '+data);
            }
        );
    });
4

2 に答える 2

4

これを試して、

 axesDefaults: {
            tickRenderer: $.jqplot.CanvasAxisTickRenderer ,
            tickOptions: {
                angle: -90,
                fontSize: '10pt'
            }
        },
        axes: {
            xaxis: {
                renderer: $.jqplot.CategoryAxisRenderer,
                ticks: ticks
            },
    }

また

axes: {
       xaxis: {
              renderer:$.jqplot.DateAxisRenderer,
              ticks: ticks,
              tickRenderer: $.jqplot.CanvasAxisTickRenderer ,
              tickOptions: {
                           angle: -90,
                           fontSize: '10pt'
                           }
              }
      }

また

axes: {
           xaxis: {
                  renderer:$.jqplot.DateAxisRenderer,
                  ticks: ticks,
                  rendererOptions:{
                                 tickRenderer: $.jqplot.CanvasAxisTickRenderer ,
                                 tickOptions: {
                                              angle: -90,
                                              fontSize: '10pt'
                                              }
                                 }
                }
      }
于 2013-01-16T02:38:53.683 に答える