我给了'rotation:-90'来使x轴的标签旋转。
但是该旋转甚至也适用于轴的标题。
我该如何制止呢?请任何人帮助我。
下面是我正在使用的代码。

          makeCharts = function() {
          var chart1 = new dojox.charting.Chart2D("simplechart", {
                      title: "Production(Quantity)",
                      titlePos: "top",
                      titleGap: 5,
                          titleFont: "normal normal normal 15pt Arial",
                      titleFontColor: "orange"
            });

            chart1.addPlot("default",{type:"ClusteredColumns",
                                            gap: 5,
                                            animate:{duration: 500} })
            chart1.addSeries("2008", [113.1,72.1,62.6,59.8,59.3,53.7,52.4,49.1,43.7,40.9], {fill: "#DDFEDC"});
            chart1.addSeries("2007",[113.6,65.0,59.2,56.4,62.8,53.5,47.6,44.9,41.5,39.1], {fill: "#FCDEFD"});
            chart1.addAxis("x", {
            title:'x-axis title comes here',
            includeZero: false,
            labels:[
                {value:1, text:'one'},
                                {value:2, text:'two'},
                                {value:3, text:'three'},
                                {value:4, text:'four'},
                                {value:5, text:'five'},
                                {value:6, text:'six'},
                                {value:7, text:'seven'},
                                {value:8, text:'eight'},
                                {value:9, text:'nine'},
                                {value:10, text:'ten'}
                            ],
            rotation:-90
        }
            );
            chart1.addAxis("y", {
            vertical: true,
            includeZero: true,
            from:0,
            to:200,
            minorTickStep:20}
        );
    var anim4b = new dojox.charting.action2d.Tooltip(chart1, 'default');
            chart1.render();

    new dojox.charting.widget.Legend({chart:chart1, horizontal: true}, "legend");
        };
    dojo.addOnLoad(makeCharts);

最佳答案

我刚刚遇到了与您类似的问题,偶然发现了您上面提出的解决方案稍微容易一些的解决方案。

http://dojotoolkit.org/reference-guide/dojox/charting.html#axis-title:

titleOrientation确定标题相对于轴的方向,即朝向轴的方向
“轴”,或者背对轴“离开”。

我发现通过将titleOrientation: "away"添加到x轴参数可以覆盖现有的rotation参数,从而解决了问题。

仅供参考:Similar question

10-08 07:33