如何在多边形图中添加边框?

时间:2015-09-30 06:48:34

标签: highcharts polygon

我正在使用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'
        }
    });
});

如何将绘图添加到多边形系列?

1 个答案:

答案 0 :(得分:1)

您可以使用以下方法设置线宽以显示多边形周围的边框:

 plotOptions: {
        series: {
            lineWidth: 3 //whatever width you want
        }
    }

请参阅Fiddle with your code here

如果要在多边形使用的边框中设置不同的颜色:

  plotOptions: {
        series: {
            lineWidth: 3,
            lineColor:'#ff9634' // whatever border color you want
        }
    } 

your code Here

上查看不同的边框颜色