Reputation: 5549
According to dojo documentation, lines in dojox.gfx support a number of stroke styles:
“Solid” “ShortDash” “ShortDot” “ShortDashDot” “ShortDashDotDot” “Dot” “Dash” “LongDash” “DashDot” “LongDashDot” “LongDashDotDot” “none”
Thanks!
Upvotes: 0
Views: 197
Reputation: 124059
Dojo is a cross platform API and on IE8 and below it generates VML, elsewhere (e.g. IE9+) it generates SVG.
e.g.
<line stroke-dasharray="5, 5"/>
<line stroke-dasharray="15, 15"/>
Upvotes: 0