Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #107469
    ceddy
    Participant

    Hi

    How do you remove the connection arrows and disable them?

    • This topic was modified 9 months, 3 weeks ago by ceddy.
    #107477
    ivanpeevski
    Participant

    Hi ceddy,

     

    You can prevent the connection start by calling event.preventDefault() when the event is fired. For example:

    ganttChart.addEventListener(‘connectionStart’, function(event){
    event.preventDefault();
    })

     

    You can hide the connection points with:

    .smart-task-connection-point{
    display:none
    }

     

    Best Regards,
    Ivan Peevski
    Smart UI Team
    https://www.htmlelements.com/

    #107485
    ceddy
    Participant

    Thank you very much Ivan, it worked

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.