gpt4 book ai didi

dojox.charting - 使用 'rotation' 时轴的标题会影响 - dojo-charts

转载 作者:行者123 更新时间:2023-12-01 10:09:59 27 4
gpt4 key购买 nike

我给了'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 determines the title orientation to the axis, facing to the axis by “axis”, or facing away from the axis by “away”.

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

仅供引用:Similar question

关于dojox.charting - 使用 'rotation' 时轴的标题会影响 - dojo-charts,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6041569/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com