我有一个在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库)
答案 0 :(得分:0)
API doc总共提到了五种可能性:
.stroke('#000') // seems hex notation is expected
.attr('stroke', 'black')
.attr({stroke: 'black'})
.style('stroke', 'black')
.style({stroke: 'black'})