jqPlot:隐藏轴刻度?

发布于 2024-11-05 19:46:38 字数 254 浏览 0 评论 0原文

这是带有刻度的默认 jqPlot 轴:

withticks

在 x 轴上设置“showTicks: false”会删除所有内容:

without ticks

我想显示数字并隐藏刻度 - 数字和粗轴之间的小破折号 线。这可能吗?

Here's a default jqPlot axis with ticks:

with ticks

Setting "showTicks: false" on the x-axis removes everything:

without ticks

I want to display the numbers and hide the ticks - the little dashes between the numbers and the thick axis line. Is this possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

花海 2024-11-12 19:46:38
axesDefaults: {
   showTickMarks:false
}

showTicks 切换刻度线和刻度标签,showTickMarks 仅切换刻度线。

查看以下位置的选项:
http://www.jqplot.com/docs/files/jqPlotOptions-txt.html

编辑:我错误地在代码片段中添加了 showTicks,我已修复该问题。

axesDefaults: {
   showTickMarks:false
}

showTicks toggles the tick marks and the tick labels, and showTickMarks toggles only the tick marks.

Check out the options at:
http://www.jqplot.com/docs/files/jqPlotOptions-txt.html

EDIT: I mistakenly had showTicks in the code snippet, which I fixed.

那支青花 2024-11-12 19:46:38

不确定自这个答案以来框架是否发生了变化,但它对我不起作用。

这就是所做的(我留下了所有的废话,这样你就可以看到axesDefaults所在的位置)。

var plot1 = $.jqplot ('chart1', [line1, badLine], {
    title:'Data Point Highlighting',
    axesDefaults:{
        tickOptions:{
            showMark: false
        }
    },
    axes:{
        xaxis:{
            tickInterval:1,
            min:0.5,
            ticks: [[0.5,""],[1,"1"],[2,"2"],[2.5,""]]
        },
        yaxis:{
            ticks: [['25', ""], ['24', "12am"], ['22', "2am"], '20', '18', ['16',"4pm"], '14', '12', '10', '8', '6', '4', '2', '0'],
            min:0,
            max:24,
        }
    },
    series:[
        {
            showLine: false
        },
        {
            showLine: false,
            markerOptions: { style:"x" }
        }
    ],
    highlighter:{
        show: true,
        sizeAdjust: 7.5
    },
    cursor:{
        show: false
    }
});

http://www.jqplot.com/docs/文件/jqplot-core-js.html#jqPlot.axesDefaults

Not sure if the framework changed since this answer but it didn't work for me.

Here's what did (I left all the fluff so you can see where the axesDefaults live).

var plot1 = $.jqplot ('chart1', [line1, badLine], {
    title:'Data Point Highlighting',
    axesDefaults:{
        tickOptions:{
            showMark: false
        }
    },
    axes:{
        xaxis:{
            tickInterval:1,
            min:0.5,
            ticks: [[0.5,""],[1,"1"],[2,"2"],[2.5,""]]
        },
        yaxis:{
            ticks: [['25', ""], ['24', "12am"], ['22', "2am"], '20', '18', ['16',"4pm"], '14', '12', '10', '8', '6', '4', '2', '0'],
            min:0,
            max:24,
        }
    },
    series:[
        {
            showLine: false
        },
        {
            showLine: false,
            markerOptions: { style:"x" }
        }
    ],
    highlighter:{
        show: true,
        sizeAdjust: 7.5
    },
    cursor:{
        show: false
    }
});

http://www.jqplot.com/docs/files/jqplot-core-js.html#jqPlot.axesDefaults

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文