使用 PChart 标记 Y 轴
我正在使用 PChart for PHP 来绘制图表,它运行得很好。
我绘制了一个强度图(2 = 强,1 = 中,0 = 低),我想知道是否可以在 Y 轴上显示数据的描述(强,中、低)而不是不适当的数字(2,1,0)。
(我搜索了很多没有成功,理论上只能根据 http://pchart.sourceforge.net/documentation.php?topic=faq.xlabels。)
谢谢!
I am using PChart for PHP to draw graphs, it is working pretty well.
I have drawn a graph with intensities (2 = strong, 1 = medium, 0 = low) and I would like to know if is possible to show on the Y axis the description of the data (strong,medium,low) instead of the inappropriate numbers (2,1,0).
(I have search a lot without success, theoretically you can only set the X labels according to http://pchart.sourceforge.net/documentation.php?topic=faq.xlabels.)
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有一种分配 Y 格式的方法。目前有 5 个:数字、时间、日期、公制和货币。您可以使用函数
SetYAxisFormat($Format)
在 pData 类中进行设置。要实现您想要的效果,您需要修改 pChart.class 文件并包含您自己的格式化程序函数。
在
pChart.class
文件的不同位置,有以下代码部分:要添加您自己的强度函数,在此位之后您需要添加:
然后您需要添加您自己的 <类内的 code>ToIntensity($Value) 函数:
There is a way of assigning Y formats. Currently there are 5: Number, Time, Date, Metric and Currency. You set this in the pData class by using the function
SetYAxisFormat($Format)
What you would have to do to acheive what you want is to modify the pChart.class file and include your own formatter function.
In various places in the
pChart.class
file, there is the following section of code:To add your own intensity function, after this bit you would need to add:
Then you would need to add your own
ToIntensity($Value)
function inside the class: