Hi
The documentation for Auto interval on zooming (https://ej2.syncfusion.com/javascript/documentation/chart/zooming/#auto-interval-on-zooming) is 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