updateMarker

updates the specified marker

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

Example

var todayMarker = gantt.addMarker({
    start_date: new Date(),
    css: "today",
    title:date_to_str( new Date())
});
gantt.getMarker(todayMarker).css = "today_new";
gantt.updateMarker(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