想要在我的Highcharts图表上创建单个标记,预期结果应该如下所示 - http://jsfiddle.net/m1mqv4z2/
{
x: Date.UTC(2014, 6, 31)
y: 26.5,
marker: {
symbol: 'url(http://www.highcharts.com/demo/gfx/sun.png)'
}
},
我正在寻找要在此图表上显示的上述图标 - http://jsfiddle.net/wkaLs9ub/3/。因此,例如,我想将太阳图标设置为此图表的中间值。
我尝试的方法显示在上面的代码段中,此代码嵌套在数据中,如第一小提琴中所示,但我没有成功。这是否可以在Highcharts的功能中使用?
答案 0 :(得分:4)
正如您已经指出的那样,您需要设置marker.symbol
作为您的观点。在您的数据中,它看起来像这样:
data: [
[Date.UTC(2014, 6, 31), 0.8446],
{ x: Date.UTC(2014, 8, 18), y: 0.736, marker: { symbol: 'url(http://www.highcharts.com/demo/gfx/sun.png)' } },
[Date.UTC(2014, 7, 01), 0.8283],
// ...
]
详细图表的数据取决于这段代码,它填充了detailData
数组:
$.each(masterChart.series[0].data, function () {
if (this.x >= detailStart) {
detailData.push([this.x, this.y]);
}
});
此处您还需要转移marker.symbol
个详细信息。您还需要包含enabled: true
,因为图表已将其整体禁用。你可以像这样更新这段代码:
$.each(masterChart.series[0].data, function () {
if (this.x >= detailStart) {
// If it has a symbol, include that information
if(this.marker && this.marker.symbol)
detailData.push({x: this.x, y: this.y, marker: { enabled: true, symbol: this.marker.symbol }});
// Else, just include x and y
else
detailData.push([this.x, this.y]);
}
});
请参阅this updated JSFiddle其工作原理。