LogTicks is suitable for the Tick.Marker field of an Axis, it returns tick marks suitable for a log-scale axis.
| 576 | // LogTicks is suitable for the Tick.Marker field of an Axis, |
| 577 | // it returns tick marks suitable for a log-scale axis. |
| 578 | type LogTicks struct { |
| 579 | // Prec specifies the precision of tick rendering |
| 580 | // according to the documentation for strconv.FormatFloat. |
| 581 | Prec int |
| 582 | } |
| 583 | |
| 584 | var _ Ticker = LogTicks{} |
| 585 |
nothing calls this directly
no outgoing calls
no test coverage detected