admin管理员组文章数量:1352120
I'm using Highcharts and I have this simple bar chart:
Max value in data is 27, but on the scale it's 40. How can i set yAxis.max to max value from the provided data? In this example 27 instead of 40.
To be honest I don't even need those values on chart, but I want to force a bar with biggest value to occupy 100% of available height.
The data will be provided dynamically, so I can't just set max value manually.
Here is my current code:
Highcharts.chart('container', {
chart: {
type: 'column',
height: 150,
},
yAxis: {
title: {
text: null,
},
labels: {
enabled: true,
},
},
xAxis: {
title: {
text: null,
},
},
credits: false,
legend: false,
title: {
text: null,
},
series: [{
data: [1, 0, 27, 7]
}]
});
#container {
min-width: 310px;
max-width: 800px;
height: 400px;
margin: 0 auto
}
<script src=".js"></script>
<script src=".js"></script>
<script src=".js"></script>
<div id="container"></div>
I'm using Highcharts and I have this simple bar chart:
Max value in data is 27, but on the scale it's 40. How can i set yAxis.max to max value from the provided data? In this example 27 instead of 40.
To be honest I don't even need those values on chart, but I want to force a bar with biggest value to occupy 100% of available height.
The data will be provided dynamically, so I can't just set max value manually.
Here is my current code:
Highcharts.chart('container', {
chart: {
type: 'column',
height: 150,
},
yAxis: {
title: {
text: null,
},
labels: {
enabled: true,
},
},
xAxis: {
title: {
text: null,
},
},
credits: false,
legend: false,
title: {
text: null,
},
series: [{
data: [1, 0, 27, 7]
}]
});
#container {
min-width: 310px;
max-width: 800px;
height: 400px;
margin: 0 auto
}
<script src="https://code.highcharts./highcharts.js"></script>
<script src="https://code.highcharts./modules/series-label.js"></script>
<script src="https://code.highcharts./modules/exporting.js"></script>
<div id="container"></div>
Here is jsfiddle: http://jsfiddle/de3qfb3r/
Share Improve this question edited Nov 4, 2017 at 17:24 Andrew L 5,4961 gold badge29 silver badges39 bronze badges asked Nov 3, 2017 at 19:44 xyz124xyz124 691 silver badge5 bronze badges2 Answers
Reset to default 10You say you don't care about the values on the chart, so maybe adding endOnTick: false would be enough for you:
yAxis: {
title: {
text: null,
},
labels: {
enabled: true,
},
endOnTick: false
}
Highcharts automatically calculates the maximum value and fits it to the available height. When endOnTick is true though(which is the default), it adds an extra space to finish with a tick
If you have the data before hand, you can just find the max of the array. A gotcha here is that I couldn't get the yAxis max to work without adding a tick interval. Here is an example of how you can acplish this.
var data = [1, 0, 27, 7];
var yMax = data.reduce(function(a, b) {
return Math.max(a, b);
});
Highcharts.chart('container', {
chart: {
type: 'column',
height: 150,
},
yAxis: {
title: {
text: null,
},
labels: {
enabled: true,
},
tickInterval: 2,
max: yMax
},
xAxis: {
title: {
text: null,
},
},
credits: false,
legend: false,
title: {
text: null,
},
series: [{
data: data
}]
});
#container {
min-width: 310px;
max-width: 800px;
height: 400px;
margin: 0 auto
}
<script src="https://code.highcharts./highcharts.js"></script>
<script src="https://code.highcharts./modules/series-label.js"></script>
<script src="https://code.highcharts./modules/exporting.js"></script>
<div id="container"></div>
本文标签: javascriptHighchartsset yAxismax to max value from dataStack Overflow
版权声明:本文标题:javascript - Highcharts - set yAxis.max to max value from data - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743894372a2557512.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论