iOS & macOS Charting Documentation - SciChart iOS & macOS Charts SDK v4.x
The SCIChartOverview
The SCIChartOverview Control is a component which can be used for navigating a 2D chart. It behaves like a minimap of the chart. The SciChartOverview is a separate chart which uses the original chart for configuration and displays the full range of it’s data.
Benefits of the SCIChartOverview:
- Displays an overview of the whole chart
- Allows you to select the visible range that should be displayed by dragging & resizing an element on the overview control
- Allows instantly scrolling to a specified range by tapping on the overview
Adding SCIChartOverview via the .storyboard
Add UIView onto the ViewController and set it’s class to the SCIChartOverview. Then add an IBOutlet for your SCIChartSurface in your ViewController code to be able to manipulate with it later on.

Adding SCIChartOverview purely from code
In your ViewController you will need to import SciChart and instantiate the SCIChartOverview. See the code below:
## Create Overview
To create an overview for the chart, call the method -[SCIOverviewChart createOverviewChartForParentSurface:], passing the parent surface (an instance of the surface for which the overview needs to be drawn).
Adding Zoom / Pan Modifiers to demonstrate the overview
Dragging or resizing the selection area on the overview will automatically update the visible range of the main chart, and zooming/panning the main chart will update the selection on the overview.
To demonstrate this, let’s add some zoom / pan modifiers to the chart.
Customizing the Selection and Range Annotations
SciChart Overview also allows you to specify a custom view for the selection control by initializing the overview chart with gripView. And selected range color can be modified using the fillBrush propety of the SCIChartOverview.
Grip Helpers in custom selection controls
The SCIOverview displays grip helpers for the custom selection control when the left and right selection controls in the range selection view are too close together to be easily manipulated.
You can control the visibility of these grip helpers using the shouldShowGripHelper property.
- Set
shouldShowGripHelperto true to enable grip helpers when the controls are close. - Set it to false to disable grip helpers entirely, regardless of control proximity. The default value is true.
Optional Parameters for creating SciChartOverview
-[SCIOverviewChart createOverviewChartForParentSurface:options:] method accepts optional params object described in SCIOverviewOptions. These params allow to specify axis ids and renderanle series which should be used for binding overview chart.
NOTE: specifying the SCIOverviewOptions.xAxisId and SCIOverviewOptions.yAxisId is required when you are using custom axis ids (as in case when you have multiple X or Y axes).
Another important parameter is SCIOverviewOptions.renderableSeries, which is used to set a renderable series.

Update the chart overview
To refresh or replace the current chart overview, you can use the method -[SCIChartOverview updateOverviewChartForParentSurface:series:]. This method updates the existing overview by setting a new SCIChartSurface and associated renderable series.
If you also need to update the grip view in addition to the chart surface and series, use the method -[SCIChartOverview updateOverviewChartForParentSurface:series:gripView:]. This version of the method allows you to pass an updated grip view along with the chart surface and series, ensuring that all relevant components of the chart overview are refreshed.
Using the SciChartOverview in a Vertical Chart
To create a vertical chart, set the axis alignment as follows: align the xAxis to the left and the yAxis to the bottom of the chart. Additionally, you may need to adjust the positioning of the overview container view to fit your specific layout requirements. These adjustments will convert the chart into a vertical orientation, enabling the overview to be resizable and movable in the vertical direction.

View on GitHub