Hi all,

I want to place multiple flow charts in the same document.
However, connection comments displays correctly in the first chart, but disappears in the second chart.

Below is a minimum example adapted from the wiki.

I am using mkiv, 
MTXrun | current version: 2010.07.30 11:35
This is LuaTeX, Version beta-0.62.0-2010082314

Any suggestions? Thanks a lot!

regards,
shenchen


--------------------------------------
\usemodule[chart]

\starttext
\setupFLOWcharts[height=3\lineheight]

\startFLOWchart[example]
\startFLOWcell 
  \name {flow}
  \location {1,1}
  \text {Flow}
  \connection [bt] {chart}
    \comment[r] {abc}
\stopFLOWcell
\startFLOWcell
  \name {chart}
  \location{1,2}
  \text {Charts}
\stopFLOWcell
\stopFLOWchart
\FLOWchart[example]

\startFLOWchart[clone]
\startFLOWcell 
  \name {flow}
  \location {1,1}
  \text {Flow}
  \connection [bt] {chart}
    \comment[r] {abc}
\stopFLOWcell
\startFLOWcell
  \name {chart}
  \location{1,2}
  \text {Charts}
\stopFLOWcell
\stopFLOWchart
\FLOWchart[clone]

\stoptext
--------------------------------------