Interactivity in WPF Range Selector (SfDateTimeRangeNavigator)

7 May 20218 minutes to read

The date-time range navigator control provides interactive features such as zooming and panning. This control has a resizable scrollbar, which is used to zoom in large amount of data and navigate to particular timespan by moving the scroll bar.

The ZoomPosition and ZoomFactor properties of the chart axis can be bound with the SfDateTimeRangeNavigator.

Properties

Property Description

ZoomPosition

Represents the zoom position of the selected range.

ZoomFactor

Represents the zoom factor of the selected range.

SelectedData

Gets the selected data between selected ranges.

ShowGridLines

Shows the gridlines inside the content.

Minimum

Sets the minimum or starting range of the navigator.

Maximum

Sets the maximum or ending range of the navigator.

ViewRangeStart

Gets the start value of the selected range.

ViewRangeEnd

Gets the end value of the selected range.

EnableDeferredUpdate

Enables deferred scrolling and panning.

DeferredUpdateDelay

Gets or sets the delay value when the EnableDeferredUpdate is enabled.

Events

Event Parameters Description

ValueChanged

ValueChanged (Object sender, EventArgs e) This event is triggered when the position of the scrollbar is changed
`LowerBarLabelsCreated`

LowerBarLabelsCreated(Object sender, LowerBarLabelsCreatedEventArgs e)

This event is triggered when the lower bar labels gets created.

`UpperBarLabelsCreated`

UpperBarLabelsCreated(Object sender, UpperBarLabelsCreatedEventArgs e)

This event is triggered when the upper bar labels gets created.

<chart:SfChart x:Name="financialChart">            

  <chart:SfChart.PrimaryAxis>

         <chart:CategoryAxis Name="axis1" ZoomPosition="{Binding ElementName=RangeNavigator, Path=ZoomPosition, Mode=TwoWay}" 
         
                             ZoomFactor="{Binding ElementName=RangeNavigator, Path=ZoomFactor, Mode=TwoWay}"

                             Header="Date" LabelFormat="MMM/dd" 

                             LabelTemplate="{StaticResource labelTemplate}" />                

  </chart:SfChart.PrimaryAxis>            

  <chart:SfChart.SecondaryAxis>                

                  <chart:NumericalAxis  />  

</chart:SfChart.SecondaryAxis>            

<chart:CandleSeries Name="series" ItemsSource="{Binding StockPriceDetails}" XBindingPath="_Date"  High="High" Open="Open" Close="Close" Low="Low"  Label="Candleseries">            

</chart:CandleSeries>        

</chart:SfChart>        

<chart:SfDateTimeRangeNavigator x:Name="RangeNavigator" ItemsSource="{Binding StockPriceDetails}" XBindingPath="_Date" >                

	<chart:SfDateTimeRangeNavigator.Content>                   

		<chart:SfLineSparkline ItemsSource="{Binding StockPriceDetails}"   YBindingPath="High" > 

        </chart:SfLineSparkline>                

	</chart:SfDateTimeRangeNavigator.Content>            

</chart:SfDateTimeRangeNavigator>
SfDateTimeRangeNavigator rangeNavigator = new SfDateTimeRangeNavigator()
{

    ItemsSource = new ViewModel().StockPriceDetails,

    XBindingPath = "Date",

    VerticalAlignment = VerticalAlignment.Top

};

SfLineSparkline sparkline = new SfLineSparkline()
{

    ItemsSource = new ViewModel().StockPriceDetails,

    YBindingPath = "High"

};

rangeNavigator.Content = sparkline;

Grid.SetColumn(rangeNavigator, 1);

SfChart chart = new SfChart();

chart.PrimaryAxis = new CategoryAxis()
{

    PlotOffset = 25,

    Header = "Date",

    LabelFormat = "MMM/dd",

    ZoomPosition = rangeNavigator.ZoomPosition,

    ZoomFactor = rangeNavigator.ZoomFactor

};

chart.SecondaryAxis = new NumericalAxis();

CandleSeries candleSeries=new CandleSeries ()
{

    ItemsSource = new ViewModel().StockPriceDetails,

    High ="High", Low = "Low",

    Open ="Open", Close ="Close",

    XBindingPath ="Date",

    Label ="CandleSeries"

};

chart.Series.Add(candleSeries);

The following screenshot illustrates selecting one quarter of data.

Zooming support in WPF SfDateTimeRangeNavigator

The following screenshot illustrates the control after zooming into weeks of data from 6 months of data.

Zooming support in WPF SfDateTimeRangeNavigator

Thumb style customization

SfDateTimeRangeNavigator LeftThumbStyle and RightThumbStyle can be customized by using the following properties:

SymbolTemplate

SymbolTemplate can be used for gets or sets the data template for the symbol.

<syncfusion:SfDateTimeRangeNavigator x:Name="navigator">

    <syncfusion:SfRangeNavigator.Resources>

        <DataTemplate x:Key="symbolTemplate">

            <Grid>

                <Ellipse Height="40" Width="40"  Fill="Green" Stroke="Black"
                                 
                                 VerticalAlignment="Center" StrokeThickness="2"/>

                <Ellipse Height="7" Width="7" Fill="White" 

                         VerticalAlignment="Center"/>
                        
            </Grid>

        </DataTemplate>

    </syncfusion:SfRangeNavigator.Resources>

    <syncfusion:SfDateTimeRangeNavigator.RightThumbStyle>

        <syncfusion:ThumbStyle SymbolTemplate="{StaticResource symbolTemplate}"/>

    </syncfusion:SfDateTimeRangeNavigator.RightThumbStyle>

</syncfusion:SfDateTimeRangeNavigator>
ThumbStyle thumbStyle = new ThumbStyle()
{

    SymbolTemplate = grid.Resources["symbolTemplate"] as DataTemplate

};

SfDateTimeRangeNavigator rangeNavigator = new SfDateTimeRangeNavigator()
{

    ItemsSource = new ViewModel().StockPriceDetails,

    XBindingPath = "Date",

    RightThumbStyle = thumbStyle

};

The following screenshot illustrates the control after customizing the right thumb.

Thumb customization support in WPF SfDateTimeRangeNavigator

LineStyle

LineStyle can be used for gets or sets the style for the thumb line.

<Grid x:Name="grid">

<Grid.Resources>

    <Style TargetType="Line" x:Key="lineStyle1">

        <Setter Property="Stroke" Value="Red"></Setter>

        <Setter Property="StrokeThickness" Value="3"></Setter>

        <Setter Property="StrokeDashArray" Value="2,1"></Setter>

    </Style>

    <Style TargetType="Line" x:Key="lineStyle2">

        <Setter Property="Stroke" Value="Red"></Setter>

        <Setter Property="StrokeThickness" Value="3"></Setter>

        <Setter Property="StrokeDashArray" Value="2,1"></Setter>

    </Style>

</Grid.Resources>

<syncfusion:SfDateTimeRangeNavigator>

    <syncfusion:SfDateTimeRangeNavigator.LeftThumbStyle>

        <syncfusion:ThumbStyle LineStyle="{StaticResource lineStyle1}"/>

     </syncfusion:SfDateTimeRangeNavigator.LeftThumbStyle>

    <syncfusion:SfDateTimeRangeNavigator.RightThumbStyle>

        <syncfusion:ThumbStyle LineStyle="{StaticResource lineStyle2}"/>

    </syncfusion:SfDateTimeRangeNavigator.RightThumbStyle>

</syncfusion:SfDateTimeRangeNavigator>

</Grid>
ThumbStyle thumbLineStyle1 = new ThumbStyle()
{

    LineStyle = grid.Resources["lineStyle1"] as DataTemplate

};

ThumbStyle thumbLineStyle2 = new ThumbStyle()
{

    LineStyle = grid.Resources["lineStyle2"] as DataTemplate

};

SfDateTimeRangeNavigator rangeNavigator = new SfDateTimeRangeNavigator()
{

    LineStyle = thumbLineStyle1,

    LineStyle = thumbLineStyle2

};

LineThumbStyle

Higher and lower bars customization

Property Description

HigherBarGridLineStyle

Defines the style for gridlines of upper labels bar.

LowerBarGridLineStyle

Defines the style for gridlines of lower labels bar.

HigherBarTickLineStyle

Defines the style for ticklines of upper labels bar.

LowerBarTickLineStyle

Defines the style for ticklines of lower labels bar.