getMarker

gets the marker's object

object getMarker(string |number markerId);
markerIdstring |numberthe marker's id
objectthe marker's configuration object

Example

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:...}

Related samples

Details

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.

See also
Back to top