how to hide the vertical grid-lines in timming diagram?

0 votes
asked Nov 16, 2022 in Bug by happygo
how to hide the vertical grid-lines in timming diagram?

2 Answers

0 votes
answered Nov 16, 2022 by The-Lu (64,340 points)

Hello H., and all,

For that, You can use:

<style>
timingDiagram {
  timeline {
    LineColor transparent
  }
}
</style>

But that suppresses also the horizontal timeline on the bottom! wink

@PlantUML team:
Perhaps adding a new parameter as 'grid' to differentiate

  • vertical grid
  • to horizontal timeline...

See similar related question:

Enjoy,
Regards.

commented Nov 17, 2022 by plantuml (295,000 points)

With last online version, you can have this.

Does it help?

0 votes
answered Dec 6, 2022 by The-Lu (64,340 points)

Hello H., and all,

Yes that help; this now works with the last version (V1.2022.13), with:

<style>
timingDiagram {
  timegrid {
    LineColor transparent
  }
}
</style>

Thanks to PlantUML team. yes
Regards.

...