0

xAxis の次の plotLine オブジェクトは、両方のペインに線を追加しています。このコードで最初のペインだけに線を追加するにはどうすればよいですか? 残りのペインに影響を与えることなく、またプロットバンドにも同じことをありがとう

ここにコードがあります

           xAxis: {

              plotLines: [{
              value: 1180656000000,
                  color: 'green',
                  dashStyle: 'shortdash',
                  width: 2,
                  label: {
                      text: 'prerinse'
                  }
              }, {
                  value: 1256227606000,
                  color: 'red',
                  dashStyle: 'shortdash',
                  width: 2,
                  label: {
                      text: 'postrinse'
                  }
              }]

              },




                  yAxis: [{
                      title: {
                          text: 'OHLC',
                      },

                      height: 200,
                      lineWidth: 2
                  }, {
                      title: {
                          text: 'Volume'
                      },
                      top: 300,
                      height: 100,
                      plotLines: [{value:500}],
                      offset: 0,
                      lineWidth: 2
                  }],

                      series: [{
                          type: 'candlestick',
                          name: 'AAPL',
                          data: ohlc,
                          dataGrouping: {
                              units: groupingUnits
                          }
                      }, {
                          type: 'column',
                          name: 'Volume',
                          data: volume,
                          yAxis: 1,
                          dataGrouping: {
                              units: groupingUnits
                          }
4

1 に答える 1

0
series: [{
type: 'candlestick',
name: 'AAPL',
data: ohlc,
dataGrouping: {
units: groupingUnits
}
}, 
{
type: 'column',
name: 'newline',
data: newdata,
yAxis: 1, <-This
dataGrouping: {
units: groupingUnits
},

{
type: 'column',
name: 'Volume',
data: volume,
yAxis: 1,
dataGrouping: {
units: groupingUnits
}

これにより、2 番目のペインが y 軸に追加されます。コード内のポイントされた行を「xAxis: 0」に変更すると、新しいペインが x 軸に追加されます。

于 2012-06-14T13:27:49.593 に答える