Перейти к основному содержимому

updateMarker

Description

Обновляет указанный маркер

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

Parameters

  • markerId - (required) string | number - идентификатор маркера

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

заметка

Этот метод определён в расширении marker, поэтому необходимо включить плагин marker. Подробнее читайте в статье Adding Vertical Markers.

Need help?
Got a question about the documentation? Reach out to our technical support team for help and guidance. For custom component solutions, visit the Services page.