如何在多边形图中添加边框?
How to add border in polygon plot?
我正在使用 highcharts 绘制多边形系列,但无法为其添加边框。我尝试使用 plotOptions.series.borderWidth 但没有效果。
代码:
$(function () {
$('#container').highcharts({
title: {
text: 'Height vs Weight'
},
subtitle: {
text: 'Polygon series in Highcharts'
},
xAxis: {
gridLineWidth: 1,
title: {
enabled: true,
text: 'Height (cm)'
},
startOnTick: true,
endOnTick: true,
showLastLabel: true
},
yAxis: {
title: {
text: 'Weight (kg)'
}
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'middle'
},
series: [{
name: 'Target',
type: 'polygon',
data: [[153, 42], [149, 46], [149, 55], [152, 60], [159, 70], [170, 77], [180, 70],
[180, 60], [173, 52], [166, 45]],
color: Highcharts.Color(Highcharts.getOptions().colors[0]).setOpacity(0.5).get(),
enableMouseTracking: false
}],
tooltip: {
headerFormat: '<b>{series.name}</b><br>',
pointFormat: '{point.x} cm, {point.y} kg'
}
});
});
如何向多边形系列添加绘图?
您可以使用以下方法设置线宽以显示多边形周围的边框:
plotOptions: {
series: {
lineWidth: 3 //whatever width you want
}
}
如果您想在多边形的边界中设置不同的颜色,请使用:
plotOptions: {
series: {
lineWidth: 3,
lineColor:'#ff9634' // whatever border color you want
}
}
上查看不同的边框颜色
我正在使用 highcharts 绘制多边形系列,但无法为其添加边框。我尝试使用 plotOptions.series.borderWidth 但没有效果。
代码:
$(function () {
$('#container').highcharts({
title: {
text: 'Height vs Weight'
},
subtitle: {
text: 'Polygon series in Highcharts'
},
xAxis: {
gridLineWidth: 1,
title: {
enabled: true,
text: 'Height (cm)'
},
startOnTick: true,
endOnTick: true,
showLastLabel: true
},
yAxis: {
title: {
text: 'Weight (kg)'
}
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'middle'
},
series: [{
name: 'Target',
type: 'polygon',
data: [[153, 42], [149, 46], [149, 55], [152, 60], [159, 70], [170, 77], [180, 70],
[180, 60], [173, 52], [166, 45]],
color: Highcharts.Color(Highcharts.getOptions().colors[0]).setOpacity(0.5).get(),
enableMouseTracking: false
}],
tooltip: {
headerFormat: '<b>{series.name}</b><br>',
pointFormat: '{point.x} cm, {point.y} kg'
}
});
});
如何向多边形系列添加绘图?
您可以使用以下方法设置线宽以显示多边形周围的边框:
plotOptions: {
series: {
lineWidth: 3 //whatever width you want
}
}
如果您想在多边形的边界中设置不同的颜色,请使用:
plotOptions: {
series: {
lineWidth: 3,
lineColor:'#ff9634' // whatever border color you want
}
}
上查看不同的边框颜色