drawVerticalText method
Implementation
@override
void drawVerticalText(canvas, textStyle, int gridRows) {
indicator.drawVerticalText(
canvas: canvas,
style: textStyle,
maxValue: maxValue,
minValue: minValue,
fixedLength: fixedLength,
chartRect: Rect.fromLTRB(
chartRect.left,
chartRect.top - topPadding,
chartRect.right - chartStyle.space,
chartRect.bottom,
),
);
}