jqPlot - x 轴上带有角度的多线刻度
我有一个关于 x 轴刻度的问题。我使用 jqPlot 0.9.7
我的刻度线是多行的,如下所示: a
; b
c
d。 我使用 renderer: $.jqplot.CategoryAxisRenderer
并且效果很好,所以 刻度线显示在多行中并且
有效。
现在我需要将它们旋转 30°。我尝试了“角度:-30”但没有成功 工作。
使用此配置:
xaxis: {
renderer: $.jqplot.CategoryAxisRenderer,
tickRenderer: $.jqplot.CanvasAxisTickRenderer ,
ticks: ['a <br> b <br> c <br> d' , 'p <br> q <br> r <br> s'],
tickOptions:{
angle: -30,
fontSize: '9px'
}
}
刻度显示在一条旋转的长线上。既不是
也不是 \n
正在根据我的需要进行解释。这是我发现的最好的方法。
有什么解决办法吗?我怎样才能写旋转文本刻度?
任何建议都会对我非常有帮助。 提前致谢。此致
I have a question about ticks in x-axis. I work with jqPlot 0.9.7
My ticks are multiline, like this: a <br> b <br> c <br> d
.
I use renderer: $.jqplot.CategoryAxisRenderer
and it works well, so
the ticks show in multiline and
works.
Now I need to rotate them 30º. I tried 'angle: -30' but it doesn't
work.
With this config:
xaxis: {
renderer: $.jqplot.CategoryAxisRenderer,
tickRenderer: $.jqplot.CanvasAxisTickRenderer ,
ticks: ['a <br> b <br> c <br> d' , 'p <br> q <br> r <br> s'],
tickOptions:{
angle: -30,
fontSize: '9px'
}
}
The ticks are shown in one single, rotated, long line. Neither <br>
nor \n
are being interpreted as I need. This is the best approach I have found.
Is there any solution for this? How could I write rotated text ticks?
Any suggestion would be very helpful for me.
Thanks in advance. Best regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为了使正确的语法起作用,您需要包含以下脚本以及默认的 jqPlots 脚本。
jqplot.canvasTextRenderer.min.js
jqplot.dateAxisRenderer.min.js
jqplot.canvasAxisTickRenderer.min.js
(上面的文件是jqPlot自带的包裹)。
然后将以下内容添加到绘图选项列表中,
然后您的
操作就会生效。
例如
jqPlot 的示例可以在这里找到:
http://www.jqplot.com/tests/rotated-tick-labels.php
For the correct syntax to work you need to include the following scripts along with the defaults jqPlots scripts.
jqplot.canvasTextRenderer.min.js
jqplot.dateAxisRenderer.min.js
jqplot.canvasAxisTickRenderer.min.js
(The above files comes with the jqPlot package).
Then add the following to the plot options list
Then your
will be effective.
e.g.
Example from jqPlot can be found here:
http://www.jqplot.com/tests/rotated-tick-labels.php
不要忘记添加:
Don't forget to add :