如果在Highcharts中使用条形图,则缩放似乎无法正常工作。 您可以选择区域和按钮"重置缩放"出现。但是,该图表未放大。
我添加到基本栏示例的唯一代码是缩放类型:
chart: {
type: 'bar',
zoomType: 'x'
},
完整示例:http://jsfiddle.net/966off9e/
这是一个错误还是一个功能? ; - )
答案 0 :(得分:3)
只需添加' minRange'到xAxis:http://jsfiddle.net/mushigh/axy8v9oa/
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<div id="container" style="min-width: 310px; max-width: 800px; height: 400px; margin: 0 auto"></div>
$(function () {
$('#container').highcharts({
chart: {
type: 'bar',
zoomType: 'x'
},
title: {
text: 'Historic World Population by Region'
},
subtitle: {
text: 'Source: Wikipedia.org'
},
xAxis: {
categories: ['Africa', 'America', 'Asia', 'Europe', 'Oceania'],
title: {
text: null
},
minRange: 1,
},
yAxis: {
title: {
text: 'Population (millions)',
align: 'high'
},
labels: {
overflow: 'justify'
}
},
tooltip: {
valueSuffix: ' millions'
},
plotOptions: {
bar: {
dataLabels: {
enabled: true
}
}
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'top',
x: -40,
y: 100,
floating: true,
borderWidth: 1,
backgroundColor: ((Highcharts.theme && Highcharts.theme.legendBackgroundColor) || '#FFFFFF'),
shadow: true
},
credits: {
enabled: false
},
series: [{
name: 'Year 1800',
data: [107, 31, 635, 203, 2]
}, {
name: 'Year 1900',
data: [133, 156, 947, 408, 6]
}, {
name: 'Year 2008',
data: [973, 914, 4054, 732, 34]
}]
});
});
答案 1 :(得分:2)
我认为当你使用categorized
轴时,这在某种程度上是Highcharts中的一个错误。但是解决方法是对该轴使用min
:
xAxis: {
categories: ['Africa', 'America', 'Asia', 'Europe', 'Oceania'],
title: {
text: null
},
min: 0
}
这里是DEMO
答案 2 :(得分:0)
另一种可能性是数据量大于cropThreshold变量。请参阅this related post。
您还可以查看此变量的official docs。每种图形都有这个变量,具有不同的默认值。你应该检查一下以确定。