我尝试了
scrollbar: {
enabled: true
}
但它不起作用。
我尝试使用高股票附带的highcharts.js ..这也不起作用。 我做错了吗?
答案 0 :(得分:14)
如果您的代码仍无效,您可以尝试更改此代码:
<script type="text/javascript" src="js/highcharts.js"></script>
用这个:
<script type="text/javascript" src="https://code.highcharts.com/stock/highstock.js"></script>
你可以添加:
scrollbar: {
enabled: true
},
最后,您可以为每次要查看的数据点添加此项,例如“min:6”:
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
min: 6 <!-- LOOK at this -->
},
答案 1 :(得分:7)
类似的问题已经回答here。
您可以参考:How to enable scrollbars 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]
}]
});
答案 2 :(得分:0)
在回答此问题时,可以通过highstock js添加滚动条。 我设法仅使用highcharts js而不使用highstock的方式为柱形图实现了一种优雅,简单的滚动条解决方案,如下所示:
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轴上的时段,包括天,周,月等。