我有一个已经生成的气泡图。我需要根据用户可以选择的复选框在同一图表上添加/删除网格线。
我尝试了类似以下的方法,但没有奏效。
setTimeout(function () {
var chart = $('#bubble-chart-container').highcharts();
chart.options.xAxis[0].gridLineWidth = 1;
chart.options.yAxis[0].gridLineWidth = 1;
chart.reflow();
}, 500);
幕布斯6054654
相关分类