gpt4 book ai didi

highcharts - Highcharts 中的 Y 轴刻度

转载 作者:行者123 更新时间:2023-12-01 19:26:42 24 4
gpt4 key购买 nike

在 highcharts 中,默认情况下,x 轴上有刻度线,就像 x 轴上的刻度线(下面的代码片段),但我找不到任何方法在 y 轴上创建刻度线。这可能吗?

enter image description here

$(function () {
$('#container').highcharts({
title:{
text:''
},

xAxis: {
gridLineColor: 'transparent',
title: {
text: "x"
},
gridLineWidth: 1,
min: -5,
max: 5,
tickInterval: 1,
},
yAxis: {
gridLineColor: 'transparent',
title: {
text: "y"
},
min: -5,
max: 5,
tickInterval: 1,
lineWidth: 1,
title: {
text: null
}
},

legend: {
enabled: false
},

series: [{
type: "line",
marker: {
enabled: false
},

data: [
[-3, 3],
[-2, 2],
[-1, 1],
[0, 0],
[1, 1],
[2, 2],
[3, 3]

]
}]

});
});
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://code.highcharts.com/highcharts.js"></script>
<div id="container" style="width: 400px; height: 400px"></div>

最佳答案

只需使用 tickLengthtickWidth :

yAxis: {
tickLength: 10,
tickWidth: 1
}

示例:http://jsfiddle.net/7ox30pmy/

关于highcharts - Highcharts 中的 Y 轴刻度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26351616/

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