deleteMarker

deletes the specified marker

void deleteMarker(string | number markerId);
markerIdstring | numberthe marker's id

Example

const todayMarker = gantt.addMarker({
    start_date: new Date(),
    css: "today",
    title:date_to_str( new Date())
});
gantt.deleteMarker(todayMarker);

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