Click here to Skip to main content
15,890,897 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
I want to show graphical representation of stages. stages with predecessor and successor and each of stages should be represented as block and connector. Along with it each block have different color in background based on condition. How should I generate it in my web application?
Posted

1 solution

Since this will be a web application you have several choices:
You could render it as:

  1. HTML
  2. an image
  3. flash
  4. SVG


Whichever you choose will depend on the availability of the feature on the browser set you are targeting.
So first you'll have to decide which browsers are being targetet, then you can make a decision on what options are available for rendering this.

Cheers!
 
Share this answer
 
Comments
[no name] 15-Jul-14 8:10am    
No actually I want to generate it runtime with getting input from database. So I can't use as image or HTML.
Manfred Rudolf Bihy 15-Jul-14 8:18am    
You seem confused! You are talking about a web application (see ASP.NET tag).
So of course you can use HTML and/or images. What do you think web pages rendered by ASP.NET consist of?
It's HTML,images, css, javascript etc.

What do you have to say about this? I'm very very curious!
Manfred Rudolf Bihy 15-Jul-14 8:20am    
And yes, HTML is usually rendered at runtime when using ASP.NET!
Dynamic image generation is not found quite as often, but it is also an option. Ever seen captchas?
[no name] 16-Jul-14 0:16am    
yes that's what I want to do. I want to generate boxes and link between them using predecessor and successor. So, can you tell me how to do that?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900