Questions tagged [diagramming]

Diagramming is a process used to create and edit diagrams. Software diagramming functions provide a user interface facility to create and edit diagrams graphically.

Diagramming is a process used to create and edit diagrams. Software diagramming functions provide a user interface facility to create and edit diagrams graphically. There are many types of diagrams (such as ER, trees, flow charts) and many diagramming languages (such as UML). Diagrams can also be free form, and not follow any particular type or language.

130 questions
2
votes
0 answers

How to generate an editable diagram from SQL file?

I have SQL files with DDL statements (create table, create view, ...). I want to generate ERD from them that I can further refine in a diagram editor (Dia, yEd, Visio or the like). Tools that I found are usually working with a connection to a…
Martin Grey
  • 554
  • 9
  • 21
2
votes
0 answers

Jointjs with TogetherJs

I am planning of developing a web based application that would allow people to draw architectural diagrams and I want to give it the functionality of collaborating. If one user makes some changes the other could see and also make further changes if…
Arihant
  • 3,349
  • 13
  • 42
  • 77
2
votes
2 answers

MVVM-Pattern for a Diagraming Application with WPF - Convert enum to xxxViewModel

I'm trying to apply the MVVM design pattern to a diagramming application. In this application there are different items (for example a rectangle, a circle,...). I would like to save the item type as an enum in my model. In my modelview I made a…
tundris
  • 23
  • 3
2
votes
1 answer

JointJS Element with ports and tool items (delete, settings etc.)

I managed to enhance my SVG-shape with ports via: joint.shapes.devs.Element = joint.shapes.basic.Generic.extend(_.extend({}, joint.shapes.basic.PortsModelInterface, { // SVG markup with ports }); With this I get the output: I want to…
Karl
  • 418
  • 10
  • 24
2
votes
3 answers

UI diagram layout

Wanted to generate a UI diagram (with nice layout) depicting relationships amongst network components. Which is the best Java based API to do such layouts with minimum fuss and light codebase.
gnlogic
  • 1,016
  • 2
  • 9
  • 14
2
votes
1 answer

Regenerate ERD after rake db:migrate

I am using http://rails-erd.rubyforge.org/ to generate an ERD - the output is a very nice diagram of my project's object model. There is also a rake task to generate the ERD, generate_erd, that I would like to have invoked automatically after I run…
Marek Příhoda
  • 10,580
  • 3
  • 35
  • 51
2
votes
2 answers

ERD diagram for non-relational database?

As we know ERD diagram is very useful for relational databases. Which Diagram is relevant for Non relational database ? can ERD be also used?
user3507189
2
votes
6 answers

Is there a standardised modelling language at a level higher than UML?

What is nice about UML is that it offers a unified suite of defined diagrams for expressing software architecture. However, the diagrams are about the system being built and do not help for helping represent requirements and understand user-level…
Sled
  • 16,514
  • 22
  • 110
  • 148
2
votes
1 answer

UML Class diagram - does multiplicity dictates implementation restriction?

Consider simple aggregration with my favourite example (chess): I would create chessboard like 2D array of chessmen (at least it seems to me to be good solution) e.g: chessman [,] board=new chessman[8,8]; This means that on each position there can…
John V
  • 4,317
  • 8
  • 33
  • 56
2
votes
2 answers

Simple UML behaviours baffle me!

Very new to UML and system design. We're at the stage of doing a class diagram in the design phase and are struggling to figure out how to implement a requirement. Here's the problem: We have a Person class that is composed of a Name class and a…
2
votes
1 answer

Scaling multiple objects relative to a bounding rectangle

I'm trying to figure out the algorithm for scaling multiple selected objects on a canvas (similar to Visio's behavior). Say for instance I have the following selected objects in my application: I then drag the lower-right handle of the bounding…
ASanch
  • 9,633
  • 42
  • 32
1
vote
1 answer

How to graphically represent a UML use case extension point?

I have a use case that is associated with two actors in a system. This use case extends another use case, but only one of the actors can use the extended use case. Is there some way to represent the conditional nature of the extension of the first…
John John Pichler
  • 3,872
  • 4
  • 36
  • 68
1
vote
3 answers

Libraries for Visio type functionality

Im currently looking for c# libraries that will provide visio like diagramming functionality. As fundamentals, I need to be able to place shapes on a canvas, define connection points on those shapes (points to which connection lines can be…
richzilla
  • 34,719
  • 13
  • 51
  • 80
1
vote
1 answer

Building diagramming tool on Netbeans platform

does anyone kvow what would be a good framework/library/tool to build a diagramming tool on top of Netbeans RCP platform. Any suggestions?
Jarek
  • 6,881
  • 14
  • 57
  • 88
1
vote
1 answer

Name of Diagrams Used In OData URI Conventions Documentation

The OData URI Conventions documentation uses some nice diagrams to visually explain the rules (here's a direct example). Do these types of diagrams have a specific name? I'd like to find a tool that will help me create them.
user170934
1 2 3
8 9