gpt4 book ai didi

javascript - 停止在 highcharts 中自动调整比例

转载 作者:行者123 更新时间:2023-11-30 08:40:41 25 4
gpt4 key购买 nike

我正在使用 highcharts,我想将比例固定为 0-100 而不是自动缩放。这是我的 JSfiddle,在这种情况下,我使用两个文本字段来证明我的要求。任何帮助!!

我的 HTML:

<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>

<div id="container" style="height: 400px"></div>
<input id="min" type="text" value="1"></input>
<input id="max" type="text" value="2"></input>
<button id="change">change!</button>

脚本代码:

$(function () {
$('#container').highcharts({
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},

yAxis: {
title: {
text: 'Temperature'
},
id: 'my_y',
lineWidth: 2,
lineColor: '#F33'
},
plotOptions:
{
line:
{
dataLabels:
{
enabled: true,
formatter:function()
{
var pcnt = (this.y);
return Highcharts.numberFormat(pcnt,1) + '%';
}
},
enableMouseTracking: false
}
},
series: [{
name: 'Temperature',
data: [7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6],
color: '#F33'
}]
});

// the button handlera
var chart = $('#container').highcharts();
var yAxis = chart.get('my_y');
var extremes = yAxis.getExtremes();
$('#min').attr('value', extremes.min);
$('#max').attr('value', extremes.max);
$('#change').click(function() {
yAxis.setExtremes($('#min').val(),$('#max').val());
console.info(yAxis)
});
});

这是我的 JSFiddle: http://jsfiddle.net/Wm7ft/

最佳答案

您可以使用最小/最大或使用 tickPositions

关于javascript - 停止在 highcharts 中自动调整比例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26750597/

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