Add chart title.
(mut self, title: String)
| 67 | |
| 68 | /// Add chart title. |
| 69 | pub fn add_title(mut self, title: String) -> Self { |
| 70 | self.title = title; |
| 71 | self |
| 72 | } |
| 73 | |
| 74 | /// Set the margins of the chart to provided values. |
| 75 | pub fn set_margins(mut self, top: isize, right: isize, bottom: isize, left: isize) -> Self { |