Updated LineSymbolizer (markdown)

eriksondata 2012-04-02 14:56:10 -07:00
parent 2e119cf7ea
commit 9fb6f35a4e

@ -28,8 +28,11 @@ A LineSymbolizer is used to render a "stroke" along a linear geometry.
```python
l = LineSymbolizer(Color('green'),0.1)
l.stroke.add_dash(.1,.1)
l.stroke.opacity = .5
To work directly with the stroke object:
l = LineSymbolizer()
s = Stroke(Color('green'),0.1)
s.add_dash(.1,.1)
s.opacity = .5
```
Fetch all the possible methods like: