I have this period selector in my component,
Now when I switch from one interval to another, I can't get any events where I can put my custom logic (Let's say aggregation) .
What is event where I can get intervalType change ?
periods: PeriodsModel[] = [
{ intervalType: 'Minutes', interval: 1, text: '1m', selected: true },
{ intervalType: 'Minutes', interval: 30, text: '30m' },
{ intervalType: 'Hours', interval: 1, text: '1H' },
{ intervalType: 'Hours', interval: 12, text: '12H' },
{ intervalType: 'Auto', text: '1D' },
];