New returns a new plot with some reasonable default settings.
()
| 83 | |
| 84 | // New returns a new plot with some reasonable default settings. |
| 85 | func New() *Plot { |
| 86 | pt := &Plot{} |
| 87 | pt.Defaults() |
| 88 | return pt |
| 89 | } |
| 90 | |
| 91 | // Add adds a Plotters to the plot. |
| 92 | // |