Let’s stick to OxyPlot for some more time. This time, we would attempt to change the color of Zoom Rectangle. For those who are new to Oxyplot, the control allows you to zoom in a particular location by permitting the user to draw rectangles in the graph. This particular rectangle is known as Zoom Rectangle.
You can enable the Zoom Rectangle by using the PlotController.
public PlotController ChartController { get; set; } ChartController = new PlotController(); ChartController.BindMouseDown(OxyMouseButton.Left, PlotCommands.ZoomRectangle);
You can now bind the PlotController with your OxyPlot PlotView instance in XAML.
<oxy:PlotView Model="{Binding Model}" Controller="{Binding ChartController,UpdateSourceTrigger=PropertyChanged}"/>
While would enable the Zoom Rectangle, you would ideally would like to do a bit of Customization, for example, changing the appearance(color) of the rectangle.
You can do so by customizing the ZoomRectangleTemplate. Let’s change the default color of the Zoom Rectangle we just created.
<oxy:PlotView Model="{Binding Model}" Controller="{Binding ChartController,UpdateSourceTrigger=PropertyChanged}"> <oxy:PlotView.ZoomRectangleTemplate> <ControlTemplate> <Border BorderBrush="Black" BorderThickness="1"> <Rectangle Fill="Orange" /> </Border> </ControlTemplate> </oxy:PlotView.ZoomRectangleTemplate> </oxy:PlotView>
That’s all you need. You now have your fully customized Zoom Rectangle.
How to limit this Zoom?
LikeLike