Link the x-axis to other plots. When the x-axis is panned or zoomed, all plots sharing this link will update synchronously.
(mut self, link: AxisLink)
| 217 | /// Link the x-axis to other plots. When the x-axis is panned or zoomed, |
| 218 | /// all plots sharing this link will update synchronously. |
| 219 | pub fn with_x_axis_link(mut self, link: AxisLink) -> Self { |
| 220 | self.x_axis_link = Some(link); |
| 221 | self |
| 222 | } |
| 223 | |
| 224 | /// Link the y-axis to other plots. When the y-axis is panned or zoomed, |
| 225 | /// all plots sharing this link will update synchronously. |