根据dojo文档的说法,dojox.gfx中的线条支持多种笔画样式:
“实心”“ShortDash”“ShortDot”“ShortDashDot”“ShortDashDotDot”“Dot”“Dash”“LongDash”“DashDot”“LongDashDot”“LongDashDotDot”“none”
谢谢!
发布于 2014-02-13 15:01:22
Dojo是一个跨平台的API,在IE8及其下面生成VML,在其他地方(例如IE9+)生成SVG。
例如:
<line stroke-dasharray="5, 5"/>
<line stroke-dasharray="15, 15"/>https://stackoverflow.com/questions/21756718
复制相似问题