php pchart 2.0 x轴横坐标位置(底部而不是顶部)
使用 pchart 2 我正在寻找一种可靠的(希望是内置的)方法将条形图的横坐标(x 轴)移动到图表的底部而不是顶部。
因此考虑到上面的图像,我想移动“点击”轴到图表的底部。
谢谢
Using pchart 2 I am looking for a reliable (hopefully built in) way to move the abscissa (x-axis) of a bar chart to the bottom of the chart rather than the top.
So considering the above image, I would like to move the 'Hits' axis to the bottom of the chart.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用:
$MyData->setAxisPosition(0,AXIS_POSITION_BOTTOM);
事实上,像 setAbscissaPosition 这样的东西会更容易。
You can use :
$MyData->setAxisPosition(0,AXIS_POSITION_BOTTOM);
indeed, something like setAbscissaPosition would be easier.