フロー チャート (画像) を動的に作成できるコード/コンポーネントを、できれば .NET/C# で探しています(ただし、XML/JSON フィードを受け取る Silverlight/Flash コンポーネントも問題ありません)。
たとえば、最終的になる前に次の手順を実行する(ビジネス)見積もりがあります。
申請中 -> 保留中 -> 改訂準備中 -> 改訂中 -> 最終版
さらに追加のステップとして、「改訂中」から「保留中」に戻る可能性があります。
したがって、コンポーネント/コードは次のように描画する必要があります (「改訂中」は、この見積もりのアクティブなステータスになります)。
Example chart http://www.wowtah.nl/flowchart-example.gif The reason that we are not just creating static GIF-images (and load the correct one on demand) is that these steps can vary per customer implementation of our product. So we're looking for a way of dynamically show the user the workflow steps that are configured for them.
Any help would be greatly appreciated!