DashStyle Type
Lists values that indicate the dashed line style.
Declaration
export type DashStyle = "Solid" | "Dash" | "Dot" | "DashDot" | "DashDotDot"
Members
| Name | Description |
|---|---|
| "Solid" | A solid line. |
| "Dash" | A line that consists of short dashes. |
| "Dot" | A line that consists of dots. |
| "DashDot" | A line that consists of a repeating short dash-dot pattern. |
| "DashDotDot" | A line that consists of a repeating short dash-dot-dot pattern. |