How to show or hide zooming toolbar items in UWP Chart?
This article describes how to show or hide the zooming Toolbar items in the UWP Chart.
The UWP Chart Zooming Toolbar encompassed some buttons for performing actions like Zoom In/Out, Resetting, and selection zooming by using the ToolBarItems property.
You can show or hide the zooming toolbar by using the EnableZoomingToolBar property in the ChartZoomPanBehavior as per the following code samples.
[XAML]
<Grid> <Grid.DataContext> <local:ViewModel /> </Grid.DataContext> <chart:SfChart> <chart:SfChart.PrimaryAxis> <chart:DateTimeAxis LabelFormat="MMM, yyyy"/> </chart:SfChart.PrimaryAxis> <chart:SfChart.SecondaryAxis> <chart:NumericalAxis /> </chart:SfChart.SecondaryAxis> <chart:SfChart.Behaviors> <chart:ChartZoomPanBehavior ToolBarItems="ZoomIn,ZoomOut,SelectZooming" EnableZoomingToolBar="True" EnableSelectionZooming="True" /> </chart:SfChart.Behaviors> <chart:FastLineSeries ItemsSource="{Binding Data}" XBindingPath="Date" YBindingPath="Load"/> </chart:SfChart> </Grid>
Download the complete sample on GitHub
Output:
Conclusion
I hope you enjoyed learning about how can I apply FillStyle.Color property to grouped nodes.
You can refer to our UWP Chart’s feature tour page to know about its other groundbreaking feature representations. You can also explore our UWP Chart’s documentation to understand how to present and manipulate data.
For current customers, you can check out our WinForms components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our WinForms Diagram and other WinForms components.
If you have any queries or require clarifications, please let us know in comments below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!