我使用ng-highcharts的股票图表。此处可用的默认缩放级别为1m
,3m
,1y
,YTD
和All
。我想做三件事。
3Y
,5y
,6Y
。我想在绘制之前设置其中一个。至少回答其中任何一个都很明显。提前致谢
答案 0 :(得分:1)
1)
在rangeSelector对象中定义按钮,就像在默认的Highcharts中一样。
buttons: [{
type: 'month',
count: 1,
text: '1m'
}, {
type: 'month',
count: 3,
text: '3m'
}, {
type: 'month',
count: 6,
text: '6m'
}, {
type: 'ytd',
text: 'YTD'
}, {
type: 'year',
count: 1,
text: '1y'
}, {
type: 'year',
count: 3,
text: '3y'
}, {
type: 'year',
count: 5,
text: '5y'
}, {
type: 'year',
count: 6,
text: '6y'
}, {
type: 'all',
text: 'All'
}]
2)
将rangeSelector.inputEnabled
参数设置为false,
演示: