textSpanLogic method

dynamic textSpanLogic(
  1. double value,
  2. bool flg,
  3. int i
)

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,
      );
    }
  }
}