(&self)
| 1187 | .style(container::transparent); |
| 1188 | tick_elements.push(positioned_label.into()); |
| 1189 | } |
| 1190 | } |
| 1191 | |
| 1192 | if tick_elements.is_empty() { |
| 1193 | return None; |
| 1194 | } |
| 1195 | |
| 1196 | Some(stack(tick_elements).into()) |
| 1197 | } |
| 1198 | |
| 1199 | pub(crate) fn visible_highlighted_points( |
| 1200 | &self, |
| 1201 | ) -> impl Iterator<Item = &(HighlightPoint, Option<TooltipUiPayload>)> { |
| 1202 | self.hovered_points |
no test coverage detected