Skip to main content

updateMarker

Description

Updates the specified marker

updateMarker: (markerId: string | number) => void

Parameters

  • markerId - (required) string | number - the 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); /*!*/

Details

note

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.