Add a text.
(&mut self, text: crate::Text)
| 2049 | |
| 2050 | /// Add a text. |
| 2051 | pub fn text(&mut self, text: crate::Text) { |
| 2052 | if text.text.is_empty() { |
| 2053 | return; |
| 2054 | } |
| 2055 | |
| 2056 | self.items.push(Box::new(text)); |
| 2057 | } |
| 2058 | |
| 2059 | /// Add data points. |
| 2060 | pub fn points(&mut self, mut points: crate::Points<'a>) { |
no test coverage detected