Auto interval on zooming not working

Hi


The documentation for Auto interval on zooming (https://ej2.syncfusion.com/javascript/documentation/chart/zooming/#auto-interval-on-zoomingis not working and also not the function enableAutoIntervalOnZooming: true

My index.is code is:

var chart = new ej.charts.Chart({
primaryXAxis: {
title: 'Date',
valueType: 'DateTime',
labelFormat: 'yyy-MM-dd'
},
primaryYAxis: {
title: 'Index',
labelFormat: '{value}',
},
series:[
{
dataSource: dataAC2, width:2,
xName: 'date', yName: 'index_quote',
name: 'Quote', type: 'Line',
}
],
title: 'PE',
theme:'FabricDark', //'FabricDark' 'BootstrapDark' 'MaterialDark'
background: "rgb(34,34,34)",
zoomSettings:
{
enableSelectionZooming: true,
enableScrollbar: true,
mode:'X',
enableAutoIntervalOnZooming: true,
},
height: '700',
tooltip: {enable: true},

}, '#element');

Thank you



2 Replies

DG Durga Gopalakrishnan Syncfusion Team November 8, 2021 12:03 PM UTC

Hi Rafael, 

Thanks for using Syncfusion products. 

We request you to use the below sample to apply auto interval on zooming for axis. We have logged documentation task for this issue, and the changes will be available in our upcoming Volume 4 Main Release which is expected to be rolled out at end of December 2021. We will let you know once it will be refreshed in online. 

var chart = new ej.charts.Chart({ 
         primaryXAxis: { 
             enableAutoIntervalOnZooming : true 
         }, 
         primaryYAxis: 
         { 
             enableAutoIntervalOnZooming : true 
         } 
}); 

 



Please revert us if you have any concerns. 

Regards,  
Durga G 



DG Durga Gopalakrishnan Syncfusion Team January 11, 2022 03:11 PM UTC

Hi Rafael,


Thanks for being patience.  


We have completed the reported changes and refreshed in live site. Please find the documentation link below.   


https://ej2.syncfusion.com/javascript/documentation/chart/zooming/#auto-interval-on-zooming


Kindly revert us if you have any concerns.  


Regards, 

Durga G


Loader.
Up arrow icon