我正在使用react-highchart。滚动条功能似乎不起作用。下面是一段代码。 滚动条在x轴中启用,它似乎不会滚动。
请参阅highcharts实现:
var config = {
title: {
text: 'Hello, World!'
},
chart :{
type:'bar'
},
xAxis: {
scrollbar:{
enabled:true
},
min:0,
max:4,
categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
},
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]
}]
};
答案 0 :(得分:4)
我想出了以下
import Highcharts from 'highcharts';
import Highstock from 'highcharts/highstock';
import ReactHighcharts from 'react-highcharts';
const Charts = ReactHighcharts.withHighcharts(Highstock);
...
function render() {
<Charts isPureConfig={true} config={this.state.config}></Charts>
}