确定HighStock图表中可用的趋势线类型

问题描述 投票:0回答:1

在此jsFiddle中,我有一个Highstocks图表,其中包含以编程方式添加的两条趋势线,类型= trendline和类型= sma。效果很好:

 series: [{
        type: 'ohlc',
        id: 'aapl-ohlc',
        name: 'AAPL Stock Price',
        data: ohlc
 }, 
 {
      type: 'trendline',
      linkedTo: 'aapl-ohlc'
},
{
      type: 'sma',
      linkedTo: 'aapl-ohlc',
      params: {
        period: 10
      }
}]

我需要知道所有可用的类型。在Highcharts demo中,有一个对话框供用户选择类型,但对话框显示类型名称/说明,但不显示应在type属性中指定的类型。如何知道可用类型的标识符?

javascript highcharts
1个回答
0
投票

您可以在Highcharts API文档中找到所有可用的序列类型及其属性,选项和一些示例。

API:https://api.highcharts.com/highstock/series

这是技术指标列表的链接:https://www.highcharts.com/docs/stock/technical-indicator-series

这是您的初衷吗?

© www.soinside.com 2019 - 2024. All rights reserved.