gets the marker's object
markerId | string | number | the marker's id |
object | the marker's configuration object |
const todayMarker = gantt.addMarker({
start_date: new Date(),
css: "today",
text:"Now"
title:date_to_str( new Date())
});
gantt.getMarker(todayMarker); //->{css:"today", text:"Now", id:...}
This method is defined in the marker extension, so you need to enable the marker plugin. Read the details in the Adding Vertical Markers article.