chordChartFontSize property

int chordChartFontSize

Implementation

int get chordChartFontSize => _getAttribute<int>(kChordChartFontSize, 0);
void chordChartFontSize=(int? x)

Possible Values:

10, 11, 12, 13, 14, 15, 16, 18, 20, 22, 24, 26, 28, 32, 36, 42, 48

pass null to remove key from attributes

Implementation

set chordChartFontSize(int? x) => (x == null)
    ? _attributes.remove(kChordChartFontSize)
    : _attributes[kChordChartFontSize] = x;