gpt4 book ai didi

javascript - 我想要 highcharts 中的 x 轴和 y 轴的网格线,但我不想要 x 轴值和 y 轴值

转载 作者:行者123 更新时间:2023-11-29 14:38:22 25 4
gpt4 key购买 nike

https://jsfiddle.net/Kondaldurgam/7kLkh7ya/8/

我只想显示网格的 x 和 y 轴,但我没有 x 和 y 轴的任何数据,它可以在没有数据的情况下显示

$(function() {
Highcharts.chart('container', {

chart: {
type: 'bubble',
plotBorderWidth: 1,
zoomType: 'xyz'
},
legend: {
enabled: false
},
credits: {
enabled: false
},

title: {
text: 'Using X Y Z Coordinates'
},

xAxis: {
type: "category",
gridLineWidth: 1
},
yAxis: {
startOnTick: false,
endOnTick: true,

title: {
text: ''
},
},
});
});

最佳答案

可能这会帮助你..在其中使用这个逻辑.. fiddler

$(function () {
var chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
ignoreHiddenSeries : false
},

xAxis: {
},

series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
}, {
data: [129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4, 29.9, 71.5, 106.4]
}]
});

// the button action
var series = chart.series[0];
series.hide();
series = chart.series[1];
series.hide();
});

关于javascript - 我想要 highcharts 中的 x 轴和 y 轴的网格线,但我不想要 x 轴值和 y 轴值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42312200/

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