React-highcharts 滚动条功能不起作用
React-highcharts scrollbar feature not working
我正在使用 react-highchart 。滚动条功能似乎不起作用。下面是一段代码。
滚动条在 xaxis 中启用,但它似乎没有滚动。
请参考 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]
}]
};
我想到了以下内容
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>
}
我正在使用 react-highchart 。滚动条功能似乎不起作用。下面是一段代码。 滚动条在 xaxis 中启用,但它似乎没有滚动。
请参考 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]
}]
};
我想到了以下内容
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>
}