我在下面使用条形图。
chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
defaultSeriesType: 'bar'
},
我的问题是,当数据负载加载到Y轴时,图表正在缩小。我可以在海图中找到垂直滚动条吗?
提前感谢,感谢您的帮助。
这是显示如何在highcharts中启用滚动条的小提琴链接:
How to enable scroolbars in highcharts
var chart = new Highcharts.Chart({
chart: {
renderTo: 'container'
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
min: 6
},
legend: {
verticalAlign: 'top',
y: 100,
align: 'right'
},
scrollbar: {
enabled: true
},
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]
}]
});
在回答此问题时,可以通过highstock js添加滚动条。对于那些想在不使用highstock的情况下实现滚动条的人,我设法仅使用highcharts js为我的柱形图实现了一个优雅而简单的滚动条解决方案,如下所示:
chart: {
type: 'column',
scrollablePlotArea: {
minWidth: {{ count($period_interval_categories) * 70}},
// nr of interval data x (40 + 30) where 40 are column width pixels and
// 30 is additional distancing between columns;
// Increase spacing pixels if needed
scrollPositionX: 1
}
},
plotOptions: {
column: {
stacking: 'normal',
pointWidth: 40, // column width in pixels
dataLabels: {
// enabled: true
}
}
},
其中$ period_interval_categories在我的图表中表示x轴上的由天,周,月等组成的期间。