type property

String? type
getter/setter pair

The dash type of the line. Possible string values are:

  • "LINE_DASH_TYPE_UNSPECIFIED" : Default value, do not use.
  • "INVISIBLE" : No dash type, which is equivalent to a non-visible line.
  • "CUSTOM" : A custom dash for a line. Modifying the exact custom dash style is currently unsupported.
  • "SOLID" : A solid line.
  • "DOTTED" : A dotted line.
  • "MEDIUM_DASHED" : A dashed line where the dashes have "medium" length.
  • "MEDIUM_DASHED_DOTTED" : A line that alternates between a "medium" dash and a dot.
  • "LONG_DASHED" : A dashed line where the dashes have "long" length.
  • "LONG_DASHED_DOTTED" : A line that alternates between a "long" dash and a dot.

Implementation

core.String? type;