gpt4 book ai didi

jqplot - 使用 jqPlot 在 x 轴上强调 0

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

当使用 jqPlot 绘制图形时,我有包含正值和负值的曲线,因此穿过 x 轴。我想强调 0 处的 x 轴,以便更清楚地区分正值和负值。有办法做到这一点吗?

在我使用示例曲线的代码下方:

$.jqplot(
'plotDiv',
[[[40,-5], [41,-5], [42,-5], [43,-5], [44,-5], [45,-5],
[46,-5], [47,-5], [48,-5], [49,-5], [50,-5], [51,-4],
[52,-3], [53,-2], [54,-1], [55,0], [56,1], [57,2], [58,3], [59,4], [60,5]]],
{ title:{text:"Results"},
axes: {
yaxis: {tickInterval: 2, label: 'Profit'},
xaxis: {tickInterval: 2, label: 'Price'}}});});

提前致谢

最佳答案

您可以使用 Canvas 覆盖在 y=0 上画一条线:

    canvasOverlay: {
show: true,
objects: [
{horizontalLine: {
name: '0 mark',
y: 0,
lineWidth: 2,
color: 'rgb(0, 0, 0)',
shadow: false
}}
]
},

更多使用 Canvas 覆盖的示例可以在 jqPlot 下载包中的“examples\canvasOverlay.html”中找到。

关于jqplot - 使用 jqPlot 在 x 轴上强调 0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5478018/

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