Vb.net 鼠标悬停时highchart显示目标

Vb.net 鼠标悬停时highchart显示目标,vb.net,highcharts,Vb.net,Highcharts,下面是我显示highcharts的代码,现在在图表中目标显示在鼠标上方。我想将其显示为细线: options.series[1] = new Object(); options.series[1].name = "Goal Points"; options.series[1].data = Goallimit; options.series[1].type = 'arearange'; options.series[1].lineWidth = 0; options.series[1].link

下面是我显示highcharts的代码,现在在图表中目标显示在鼠标上方。我想将其显示为细线:

options.series[1] = new Object();
options.series[1].name = "Goal Points";
options.series[1].data = Goallimit;
options.series[1].type = 'arearange';
options.series[1].lineWidth = 0;
options.series[1].linkedTo = ':previous';
options.series[1].color = '#A6E685';
options.series[1].fillOpacity = 0.3;
options.series[1].zIndex = 0;!

您能否发布生成图表所用的其余代码?干杯如果只有一个点,那么要在哪里渲染线?