我正在使用Highcharts,我想在值上绘制垂直线。等;
我该怎么做?感谢。
这是我的代码
<script type="text/javascript">
$(function () {
var chart;
$(document).ready(function() {
chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
type: 'area'
},
title: {
text: '<b> </b>'
},
xAxis: {
labels: {
formatter: function() {
return this.value; // clean, unformatted number for year
}
}
},
yAxis: {
labels: {
formatter: function() {
return this.value / 1000 +'k';
}
}
},
tooltip: {
formatter: function() {
return '<b>'+ Highcharts.numberFormat(this.y, 0) +'</b>';
}
},
xAxis: {
categories: [
'Mon',
'Tue',
'Wed',
'Thu',
'Fri',
'Sat',
'Sun'
],
plotBands: [{ // visualize the weekend
from: 5.5,
to: 6.5,
color: 'rgba(68, 170, 213, .2)'
}]
},
plotOptions: {
area: {
pointStart: 1,
marker: {
enabled: false,
symbol: 'circle',
radius: 1,
states: {
hover: {
enabled: true
}
}
}
}
},
series: [{
name: 'Visit',
data: [946, 733, 764, 887, 832,1423]
}, {
name: 'Unique',
data: [746, 633, 664, 687,702,1266]
}]
});
});
});
</script>
答案 0 :(得分:10)
你很可能不得不使用Highcharts renderer执行此任务,因为你想要做的事情并不适合网格,并且不太适合绘图线。
我根据您的代码制作了very simple example,该代码显示了在硬编码位置绘制任意垂直线。为了实现您的目标,您必须计算一些内容,例如每条线的起点的x / y位置,以及基于该点值的线的高度。
这是一个slightly different example,其中包含zIndex和实际需要的行,使用V
path命令绘制垂直线。
答案 1 :(得分:5)
我认为您可能正在寻找Plot Bands和/或Plot Lines。
这里有更多信息:
http://www.highcharts.com/docs/chart-concepts/plot-bands-and-plot-lines
答案 2 :(得分:4)
试试这个jsFiddle。来自Highcharts API。
答案 3 :(得分:2)
如果您只想要一条线(以及从该区域开始的区域):
xAxis:{
plotLines: [{
color: 'red', // Color value
//dashStyle: 'solid', // Style of the plot line. Default to solid
value: + new Date(), // Value of where the line will appear
width: '2' // Width of the line
}],
plotBands: [{
color: '#FFFAFA', // Color value
from: +new Date(), // Start of the plot band
to: +new Date()+1000*24*3600*30, //30 days
}],
}
答案 4 :(得分:0)