1
ハイチャートを使用してチャートを作成しました。 X軸上に線を描くように描かれています。私は私のコードはここデフォルトの代わりに反対側にプロットラインのテキストスタイルを与える方法
plotLines: [{
value: pur_time,
width: 2 ,
color: '#656568',
dashStyle: 'dash',
id: 'plotline',
label: {
text: 'Purchase deadline',
style: {
color: '#656568',
fontWeight: 'bold'
}
}
},{
value: exp_time,
width: 2 ,
color: '#A28F29',
id: 'plotline1',
label: {
text: 'Expiration time',
opposite: true,
style: {
color: '#686A3B',
fontWeight: 'bold'
}
}
}]
ある
デフォルトの代わりに、反対側のプロットラインを表示したいと思い、私は実際に期待していますどのように
を取得し、どのようなサンプルであります見えるのは
ありがとうたくさんの男 – Pilaventhiran