textSpanLogic method
Implementation
textSpanLogic(double value, bool flg, int i) {
if (radData == RadData.horizontal) {
/// Confirmation from top to bottom.
/// In that case, draw a line.
for (var i = 0; i <= wLines; ++i) {
pathSet(
flg,
i,
);
}
} else {
/// Confirmation from top to bottom.
/// In that case, draw a line.
for (var i = 0; i <= wLines; ++i) {
pathSet(
flg,
i,
);
}
}
}