I want to create a gnatt chart with the value axis interval fixed as year in a interval if 1yr eg. 2019, 2020 etc. Below is the codepen for the data I am working with
https://codepen.io/keziah91/pen/oNgdNMM
Came across the below solution but not sure how to get this in v3 format. https://www.amcharts.com/docs/v4/concepts/axes/date-axis/
// Create axes
var dateAxis = chart.xAxes.push(new am4charts.DateAxis());
dateAxis.baseInterval = {
"timeUnit": "year",
"count": 5
};
var valueAxis = chart.yAxes.push(new am4charts.ValueAxis());