Set Float Formatting will be used in strconv.FormatFloat(element, format, -1, 64)
(format byte)
| 326 | // Set Float Formatting |
| 327 | // will be used in strconv.FormatFloat(element, format, -1, 64) |
| 328 | func (t *Tabulate) SetFloatFormat(format byte) *Tabulate { |
| 329 | t.FloatFormat = format |
| 330 | return t |
| 331 | } |
| 332 | |
| 333 | // Set Align Type, Available options: left, right, center |
| 334 | func (t *Tabulate) SetAlign(align string) { |
no outgoing calls