C # flowchart component / organization chart

0

I am making a desktop application for product configuration, having as selection fields several options related to them, eg model, voltage, application ... when selecting each one, the others below are filtered according to what is registered in the database, eg when selecting model x, in a combobox of tension will be filtered the options for this model.

So far so good, it's quite simple, the problem is that the customer's need is to have the functionality mentioned above and also a representation of the possible "paths" through a kind of flow chart or organization chart, as in the image below.

In the above image the representation starts for example with the 2 possible models, then the configuration possibilities for each one.

I researched a lot of components to make this type of representation, already having the data registered and related in the flock, but I was not successful.

    
asked by anonymous 06.08.2018 / 19:03

1 answer

0

Is there an explicit need for this flowchart to be generated automatically? I have imagined here that this type of flowchart can have several particularities, since it is a product configuration, which can make it unfeasible depending on its need.

If this need not be explicit, I recommend enabling a key user to construct this flowchart manually by means of a screen that enables this. Using only Canvas, Rectangle, Path and Grid you can do this without any problems. The final product would look like a kind of Paint.

    
13.08.2018 / 19:42