0

指定されたコードのような横棒グラフを生成する必要がありますが、Y 軸は数字ではなく文字列です。仕事のためにこのコードにどのような変更を加える必要がありますか。1 ~ 4 の数字で問題なく動作していますが、Y 軸の数字の代わりに文字列を配置すると、グラフがプロットされません。

私のコード:

 plot4 = $.jqplot('chartdiv', [[[2,1], [6,2], [7,3], [10,4]], [[7,1], [5,2],[3,3],[2,4]]], {
            stackSeries: true,
            captureRightClick: true,
            seriesDefaults:{
                renderer:$.jqplot.BarRenderer,
                shadowAngle: 135,
                rendererOptions: {
                    barDirection: 'horizontal',
                    highlightMouseDown: true   
                },
                pointLabels: {show: true}
            },
            legend: {
                show: true,
                location: 'e',
                placement: 'outside'
            },
            axes: {
                yaxis: {
                    renderer: $.jqplot.CategoryAxisRenderer
                }
            }
        });

私はplot4をプロットする必要があります:

$.jqplot('chartdiv', [[[2,'a'], [6,'b'], [7,'c'], [10,'d']], [[7,'a' ], [5,'b'],[3,'c'],[2,'d']]], {

4

1 に答える 1