dashStyle property

String? dashStyle
getter/setter pair

The dash style of the outline. Possible string values are:

  • "DASH_STYLE_UNSPECIFIED" : Unspecified dash style.
  • "SOLID" : Solid line. Corresponds to ECMA-376 ST_PresetLineDashVal value 'solid'. This is the default dash style.
  • "DOT" : Dotted line. Corresponds to ECMA-376 ST_PresetLineDashVal value 'dot'.
  • "DASH" : Dashed line. Corresponds to ECMA-376 ST_PresetLineDashVal value 'dash'.
  • "DASH_DOT" : Alternating dashes and dots. Corresponds to ECMA-376 ST_PresetLineDashVal value 'dashDot'.
  • "LONG_DASH" : Line with large dashes. Corresponds to ECMA-376 ST_PresetLineDashVal value 'lgDash'.
  • "LONG_DASH_DOT" : Alternating large dashes and dots. Corresponds to ECMA-376 ST_PresetLineDashVal value 'lgDashDot'.

Implementation

core.String? dashStyle;