symbolsStroke top-level constant Symbols

List<SymbolType> const symbolsStroke

An list containing a set of symbol types designed for stroking: SymbolCircle, SymbolPlus, SymbolTimes, SymbolTriangle2, SymbolAsterisk, SymbolSquare2, and SymbolDiamond2. Useful for a categorical shape encoding with an ordinal scale.

final symbolType = ScaleOrdinal(range: symbolsStroke);

{@category Symbols}

Implementation

const symbolsStroke = [
  SymbolCircle(),
  SymbolPlus(),
  SymbolTimes(),
  SymbolTriangle2(),
  SymbolAsterisk(),
  SymbolSquare2(),
  SymbolDiamond2()
];