Attr.Stroke¶
Creates SVG attribute strings for comprehensive stroke styling properties
DaxLib.SVG.Attr.Stroke(stroke, strokeWidth, strokeOpacity, strokeDasharray, strokeDashoffset, strokeLinecap, strokeLinejoin, strokeMiterlimit, markerStart, markerMid, markerEnd)
| Parameter | Type | Required | Description |
|---|---|---|---|
| stroke | STRING | Stroke color (e.g., "#FF0000", "red") | |
| strokeWidth | INT64 | Stroke width | |
| strokeOpacity | DOUBLE | Stroke opacity (0-1) | |
| strokeDasharray | STRING | Stroke dasharray pattern (e.g., "5,5" for dashed) | |
| strokeDashoffset | STRING | Stroke dashoffset | |
| strokeLinecap | STRING | Stroke linecap ("butt", "round", "square") | |
| strokeLinejoin | STRING | Stroke linejoin ("miter", "round", "bevel") | |
| strokeMiterlimit | STRING | Miter limit for stroke joins | |
| markerStart | STRING | Marker for start of line (e.g., 'url(#arrowStart)') | |
| markerMid | STRING | Marker for middle points of line | |
| markerEnd | STRING | Marker for end of line (e.g., 'url(#arrowEnd)') |
STRING An attribute string that can be used directly in SVG elements
function 'DaxLib.SVG.Attr.Stroke' =
(
stroke: STRING,
strokeWidth: INT64,
strokeOpacity: DOUBLE,
strokeDasharray: STRING,
strokeDashoffset: STRING,
strokeLinecap: STRING,
strokeLinejoin: STRING,
strokeMiterlimit: STRING,
markerStart: STRING,
markerMid: STRING,
markerEnd: STRING
) =>
VAR _Stroke = IF(NOT ISBLANK(stroke), "stroke='" & stroke & "' ")
VAR _StrokeWidth = IF(NOT ISBLANK(strokeWidth), "stroke-width='" & strokeWidth & "' ")
VAR _StrokeOpacity = IF(NOT ISBLANK(strokeOpacity), "stroke-opacity='" & strokeOpacity & "' ")
VAR _StrokeDasharray = IF(NOT ISBLANK(strokeDasharray), "stroke-dasharray='" & strokeDasharray & "' ")
VAR _StrokeDashoffset = IF(NOT ISBLANK(strokeDashoffset), "stroke-dashoffset='" & strokeDashoffset & "' ")
VAR _StrokeLinecap = IF(NOT ISBLANK(strokeLinecap), "stroke-linecap='" & strokeLinecap & "' ")
VAR _StrokeLinejoin = IF(NOT ISBLANK(strokeLinejoin), "stroke-linejoin='" & strokeLinejoin & "' ")
VAR _StrokeMiterlimit = IF(NOT ISBLANK(strokeMiterlimit), "stroke-miterlimit='" & strokeMiterlimit & "' ")
VAR _MarkerStart = IF(NOT ISBLANK(markerStart), "marker-start='" & markerStart & "' ")
VAR _MarkerMid = IF(NOT ISBLANK(markerMid), "marker-mid='" & markerMid & "' ")
VAR _MarkerEnd = IF(NOT ISBLANK(markerEnd), "marker-end='" & markerEnd & "' ")
RETURN
_Stroke &
_StrokeWidth &
_StrokeOpacity &
_StrokeDasharray &
_StrokeDashoffset &
_StrokeLinecap &
_StrokeLinejoin &
_StrokeMiterlimit &
_MarkerStart &
_MarkerMid &
_MarkerEnd