将颜色代码添加到指标的工具提示中

时间:2018-02-25 19:51:41

标签: highcharts highstock

考虑这个例子:

http://jsfiddle.net/1pbhtbwo/2/

使用这些绘图选项:

plotOptions: {
  macd: {                
              macdLine: {
                styles: {
                  lineColor: "blue",
                  lineWidth: 1
                }
              },

              signalLine: {
                styles: {
                  lineColor: "red",
                  width: 1
                }
              },
              marker: {
                fillColor: "lightblue"
                // width:1,
              }

            },
  }

在工具提示中,只有MACD具有颜色代码。用户很难知道哪条线信号哪条线

enter image description here

如何在工具提示中添加信号直方图的颜色,以便轻松区分它们?理想情况下,这就是我需要的:

enter image description here

我发现this example更接近我想要的,为指标的每个子系列创建一个单独的系列,但显然该插件是not supported anymore

ichimoku cloud等其他指标更需要这样做。很难知道哪条线是哪条:

enter image description here

0 个答案:

没有答案