I would like to be able to change the color and thickness of analog signals similar to other lines in a timing diagram. for example, you could have:
<style>
timingDiagram {
.red {
LineColor red
}
.blue {
LineColor blue
LineThickness 5
}
}
</style>
analog "Vcore" as VDD <<red>>
binary "Vcore_EN" as VDD_EN <<blue>>
Currently this syntax works with the binary signal but not the analog one.
Thanks!