Hiding x Axis in dojox.charting

牧云@^-^@ 提交于 2019-12-12 06:11:36

问题


How can I hide the x Axis when create a chart using dojox.charting.chart2D?


回答1:


simply, you can delete the code to the axis x:

chart1.addAxis("x", {
            natural : true,
            includeZero : true
        });


来源:https://stackoverflow.com/questions/5568887/hiding-x-axis-in-dojox-charting

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!