HiThanks for publishing this excellent add-on for V23+.I h

Hi

Thanks for publishing this excellent add-on for V23+.

I have used your component in my project v24.x. Everything is working fine except the follows:

  • Progress
  • Tool tips

Here is my code for showing the progress:

step.setShowProgress(true);
step.setProgress(20.0);


and for tool tips:

step.setDescription(String.valueOf(String.valueOf(done) +" of "+ String.valueOf(total))+" is done");


But none of the above two options are working when I run my application. Thanks in advance for your help.

Setting progress or description is not supposed to show anything. There's a different way to add a tooltip however. Check out StepElement#addTooltip(String). And to get StepElement, see Gantt#getStepElement(String uid).

For progress, with StepElement, you could maybe customize it with the Vaadin's Element API to show a progress bar. Showing progress is not supported out of the box.

Please report bugs/features/questions in https://github.com/tltv/gantt-flow/issues, if you find more. Thanks.