Hi,
from the below code I am able to show my context menu on a node in diagram, now I want to hide my "Manage Branch Conditions" text from the context menu initially and it will be shown in some other condition only. Kindly help.
public contextMenu: ContextMenuSettingsModel = {
show: true, items: [
{
text: 'Manage Landing Page', id: 'MLP',
},
{
text: 'Manage Actions', id: 'MWA',
},
{
text: 'Manage Participants', id: 'MP',
},
{
text: 'Manage Branch Conditions', id: 'MBC'
}
],
showCustomMenuOnly: true,
}