是否可以在Highcharts中更改指定范围的线条颜色?我附上了一张图片,显示了预期的结果。
我知道我可以使用分开的系列,但它很不舒服。也许有一些包装器(插件)使这个过程更容易。
答案 0 :(得分:0)
我能够找到一个与您的图像类似的演示,可能是您正在寻找的(以及JS.Fiddles和代码的许多其他好例子)我发现this one here使用此代码:
$(function () {
$('#container').highcharts({
chart: {
type: 'areaspline'
},
title: {
text: 'Average fruit consumption during one week'
},
legend: {
layout: 'vertical',
align: 'left',
verticalAlign: 'top',
x: 150,
y: 100,
floating: true,
borderWidth: 1,
backgroundColor: (Highcharts.theme && Highcharts.theme.legendBackgroundColor) || '#FFFFFF'
},
xAxis: {
categories: [
'Monday',
'Tuesday',
'Wednesday',
'Thursday',
'Friday',
'Saturday',
'Sunday'
],
plotBands: [{ // visualize the weekend
from: 4.5,
to: 6.5,
color: 'rgba(68, 170, 213, .2)'
}]
},
yAxis: {
title: {
text: 'Fruit units'
}
},
tooltip: {
shared: true,
valueSuffix: ' units'
},
credits: {
enabled: false
},
plotOptions: {
areaspline: {
fillOpacity: 0.5
}
},
series: [{
name: 'John',
data: [3, 4, 3, 5, 4, 10, 12]
}, {
name: 'Jane',
data: [1, 3, 4, 3, 3, 5, 4]
}]
});
});
并且有一个JS.Fiddle for it here。希望有所帮助。
答案 1 :(得分:0)
据我所知,目前还没有任何包装。我想分两步: