如何将描边属性添加到绘制的元素?

时间:2018-11-15 15:37:24

标签: javascript svg svg.js

我有一个在svg元素上绘制圆圈的函数:

function drawCircle( pElem, pX, pY)
{
    pElem.circle( 7 ).fill( '#00FF00' ).move( pX, pY );
} //drawCircle

但是我想像这样在绘制的元素上添加黑色描边:

function drawCircle( pElem, pX, pY)
{
    pElem.circle( 7 ).fill( '#00FF00' ).move( pX, pY ).style.stroke = 'black'; //tried this but it didn't work

} //drawCircle

我该怎么做? (注意:我正在使用svg.js库)

1 个答案:

答案 0 :(得分:0)

API doc总共提到了五种可能性:

.stroke('#000') // seems hex notation is expected
.attr('stroke', 'black')
.attr({stroke: 'black'})
.style('stroke', 'black')
.style({stroke: 'black'})