Highmaps区域的边框颜色

时间:2015-07-15 09:17:49

标签: css highcharts highmaps

我在我的一个基于Web的应用程序中使用Highmaps。到目前为止,很容易根据我的用例修改它,但现在我需要更改区域的边框颜色,我无法做到。

代码我尝试但失败了:

chart: {
                plotBorderColor: '#ffffff',
                borderColor: "#ffffff",
       }

参见附图我想要实现的目标

enter image description here

想要将轮廓颜色更改为白色

http://jsfiddle.net/qLen614m/

3 个答案:

答案 0 :(得分:2)

您可以使用stroke元素的path属性:

path {
    stroke: white;
}

答案 1 :(得分:1)

可以选择为地图系列设置边框颜色。它是borderColor,应该串联设置。

series : [{
                borderColor: 'white',
...

API link

示例:http://jsfiddle.net/qLen614m/1/

答案 2 :(得分:0)

您应将borderWidth属性用于系列。

  

每个地图区域的边框宽度。

series: [{
        borderWidth: 2
    }]

这里是official demo