我有两个数据集(红色,蓝色),数据从9/11开始,一个(绿色),数据从2/13开始。绿色的开始在与其他位置相同的位置,但它应该在2/13开始。我怎么能告诉这个数据集呢?如果有办法,我宁愿不使用0。
答案 0 :(得分:0)
如果您没有任何值,可以将JavaScript的空值设置为。我的英语解释起来可能不是很好,但我的例子很清楚。您也可以查看该页面:http://www.highcharts.com/demo/area-missing/gray
<script>
$(function () {
$('.graph').highcharts({
chart: { type: 'line'},
plotOptions: { series: { connectNulls: true }},
xAxis: {categories: [2012,2011,2010,2009] },
yAxis: {title: { text: 'Example Fruit Consumption'}},
series: [
{ name:'Apple', data:[null,null,20000,41000]},
{ name:'Orange', data:[29458,29000,26892,23256]}
]
});
});
</script>
答案 1 :(得分:0)
您可以为系列定义pointStart()http://api.highcharts.com/highcharts#plotOptions.series.pointStart。