gpt4 book ai didi

jquery - highcharts highstock 问题与标志位置

转载 作者:行者123 更新时间:2023-12-01 08:41:04 25 4
gpt4 key购买 nike

我正在使用Highstock flags在我的图表中,当使用带有模板的squirrepin flag shape时,flag与系列重叠,但是如果我在没有模板的情况下使用它,它工作得很好。

series: [{
name: 'USD to EUR',
data: data,
id: 'dataseries',
tooltip: {
valueDecimals: 4
}
}, {
type: 'flags',
data: [{
x: Date.UTC(year, 1, 22),
title: '<span><b>Name</b>:John Doe </span><br><span> Age:20</span><br><span>Gender:Male</span>',
text: 'Shape: "squarepin"'
}],
onSeries: 'dataseries',
shape: 'squarepin'
}]

这是我的fiddle 有问题,

预期输出: enter image description here

它应该位于系列之上。

最佳答案

向系列添加y属性,例如

series: [{
name: 'USD to EUR',
data: data,
id: 'dataseries',
tooltip: {
valueDecimals: 4
}
}, {
type: 'flags',
data: [{
x: Date.UTC(year, 1, 22),
title: '<span><b>Name</b>:John Doe </span><br><span> Age:20</span><br><span>Gender:Male</span>',
text: 'Shape: "squarepin"'
}, {
x: Date.UTC(year, 3, 28),
title: 'A',
text: 'Shape: "squarepin"'
}],
onSeries: 'dataseries',
shape: 'squarepin',
y:-70 //place required value
}]

Fiddle演示

关于jquery - highcharts highstock 问题与标志位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47344637/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com