在烛台图表上,我在分钟解处有 oclh 值。
我希望能够以编程方式设置分组范围(1min、5min、15min、30min、1h、2h、4h、8h、12h、1w、1m、1y)。
可以直接使用highcharts吗?或者我应该依赖 ochl 操作库,是否有这样的库?
在烛台图表上,我在分钟解处有 oclh 值。
我希望能够以编程方式设置分组范围(1min、5min、15min、30min、1h、2h、4h、8h、12h、1w、1m、1y)。
可以直接使用highcharts吗?或者我应该依赖 ochl 操作库,是否有这样的库?
是的,可以通过rangeSelector
.
定义时间跨度,可以是“毫秒”、“秒”、“分钟”、“日”、“周”、“月”、“ytd”(年初至今)、“年”和“全部”之一。
定义要使用多少个已定义类型的单位。
按钮本身的文本。
rangeSelector: {
enabled: true,
buttons: [{
type: 'minute',
count: 1,
text: '1min'
}, {
type: 'minute',
count: 5,
text: '5min'
}, {
type: 'minute',
count: 60,
text: '1hr'
}, {
type: 'week',
count: 1,
text: '1w'
}, {
type: 'month',
count: 1,
text: '1m'
}, {
type: 'year',
count: 1,
text: '1y'
}, {
type: 'all',
text: 'All'
}]
}
Fiddled
例子。
希望这可以帮助。:)