A diagram is a two-dimensional geometric symbolic representation of information according to some visualization technique.

learn more… | top users | synonyms

1
vote
1answer
219 views

“class diagram”-like thing for Backbone.js models and views?

I'd love to be able to see something like RubyMine's model diagrams but for the Backbone.js parts of my project. Anyone know of a tool that does something like that?
1
vote
1answer
100 views

UML: What does this relationship mean?

I started to generate UML class diagrams from an existing Java project in Netbeans IDE, when I came across this symbol (see image). What does it mean? Thanks in advance
2
votes
2answers
130 views

JS/HTML or FLASH action diagram displayer

I'm already looking several hours for a tool that matches my requirements but can't seem to find anything. The tool that I want (regardless of the technology) should be able to draw a diagram where ...
0
votes
1answer
58 views

How to represent message mappings / transformations?

I would like to have a more or less formal way of representing how messages are consumed by different components in a system and how they are transformed by those. I have done some kind of master ...
3
votes
1answer
113 views

Plotting dependency graph via dataset

Is there any open source / free libraries out there that allows you to generate static dependency graphs in C# / ASP.NET using a dataset? When I mean static, I mean it doesn't have to be draggable or ...
0
votes
1answer
293 views

Tool for making sitemap diagrams [closed]

What tool (Windows or Mac) do you like for making web sitemaps (something along the lines of this - without the colours) http://www.avermedia.com/AVerTV/Upload/SpecialPagePic/sitemap.gif)
-4
votes
2answers
128 views

I want to find a simple diagram software [closed]

Visio is powerful, but it's expensive. I want a simple and professional software.
1
vote
1answer
261 views

arbor js - save and load graph

I'm using arbor js to create diagrams using its force-based alorithm. I would like to be able to save the x,y system coordinates of the nodes after the total energy has got below a certain point, so ...
0
votes
1answer
317 views

Diagram, jquery or mootools

I am needing to display data from certain users in diagram form as shown in the attached image. When starting is just a circle, clicking will expand and display other circles, that when you click any ...
3
votes
2answers
1k views

Venn diagram layout with d3.js

Is there a sample on how to do Venn diagram using d3.js? I know about the two samples provided in the documentation. However they force me to calculate by myself the x.y position of the circles. I am ...
0
votes
2answers
219 views

diagram-style tree control

I would like to create ui looking like the figure below. I think I can easily create that kind of image on picturebox. But each node should be selectable and right- or left-clickable. I guess that I ...
0
votes
1answer
362 views

Practice ATM Use Case Diagram

I'm currently a Software Developer and I would like to become a Software Architect in the future. As practice, I've decided to create a use case diagram for a factitious ATM. I've learned about use ...
0
votes
1answer
82 views

UML way to display relationships between applications and files

I've got a bunch of applications for generating specific datafiles. These applications often use the output from another application as their input. Overall its quite complex and I would want to ...
0
votes
1answer
265 views

Draw EER Model to create Store Database system

I asked the following question on a database site: I am trying to build an EER Model for a Autostore that has 5 locations and offers a range of auto products. They offer car repairs and ...
1
vote
1answer
170 views

How to generate a dependency diagram from a set of XSD files?

See the title: I have around 50 XSD files importing each other (with tags) and I need to analyze their dependencies. Do you know any software (preferably free) to generate a dependency diagram ...
0
votes
2answers
216 views

Plotting career path in graph

I have the dataframe test <- structure(list( y2002 = c("freshman","freshman","freshman","sophomore","sophomore","senior"), y2003 = ...
0
votes
1answer
400 views

Split a Rectangle into n equal Parts

I need to split a rectangle Rect Structure, Rect(Double X, Double Y, Double Width, Double Height) into a number of smaller rectangles/structures for n = 2, n= 4 and n = 6, i define a Rect for my ...
0
votes
1answer
51 views

Diagram Splitting

Hi i would like to split my Diagram in four Parts, so i defined 4 equal Rectangle, but in bounds3 and bounds4 there still some missing Nodes. can anyone help! //b = (X, Y, Width, Height). // ...
0
votes
1answer
297 views

show events and GUI classes in diagram class

i am currently working on a project and need to create some uml diagram properly in order to put them in my final report. so i'm wondering if i should put the GUI classes in the diagram ? in that ...
0
votes
1answer
44 views

Cutting a diagram in 4 Parts

Hi i would like to split my Diagram in four Parts. How can i define the other 3 Bounds. Rect b = activeDiagram.Panel.DiagramBounds; // b = (-370, -190, 3099, 2450) Rect bounds1 = new Rect((new ...
0
votes
0answers
47 views

How to cut a diagram in Grid

Hi i would like to split my Diagram in more than one Part(2 or 4).I grab all of the diagram as an image by calling DiagramPanel.MakeBitmap and converted to a PDF. can anyone help! // grab the whole ...
0
votes
0answers
160 views

WPF diagram control with nodes and edges [closed]

I am looking for simple diagram control for WPF which let me create network of nodes and edges by click and dragging. And I can move the nodes along with edges
0
votes
1answer
69 views

How to diagram calls within an application at a high level?

I am not a big fan of UML. I believe UML is great in some rare instances, however I do not want to use a UML diagram to show a high level flow of calls through my application. Problem is - most of the ...
0
votes
0answers
57 views

Is there a human-readable and text-based representation of a Component diagram?

I'm looking for a text-based representation of a component diagram that does these things: A human can read and understand the diagram just by looking at the text The text can be rendered into a ...
-2
votes
3answers
570 views

What diagram use to show client needs (at CRM)

What do you usually use to show client structure, data, etc.? Which diagram UML? Or you use something else? I must show/prepare to my client diagram about solution to his CRM process. I looking for ...
0
votes
0answers
90 views

Java User Interface coding - Stretching diagram?

I need guidance on how to modify my interface. It displays web diagrams on a 1300x550 panel. These diagrams are composed of buttons linked together with arrows in the background. So for example ...
2
votes
1answer
167 views

Java library to create and dynamically modify business diagrams

I am looking for a good java library to manipulate box, arrows and labels in order to dynamically create and fill diagrams like the following and render them to a png : Another example I can ...
0
votes
3answers
275 views

about sequence diagram for multi-threads java application

I want to draw sequence diagram for a multi-threads java application. Do you think a sequence diagram is Ok for a multi-threads java application(If so, I don't know how to do that as of now, any ...
-1
votes
2answers
205 views

How to change the label of “A”, “B”, “C” e.t.c. in venn (R)

I try to create a Venn Diagram with venn() function in R. It works but I want to be able to define my own labels instead of "A", "B" e.t.c... I don't understand how one do that cause there is no label ...
2
votes
2answers
135 views

Permutation diagram in r

I have a data.frame showing the strength of the relationship between all possible combination of the variables at site x with the variable at site y. set.seed(1410) df<-data.frame( ...
1
vote
1answer
379 views

Linked list in data flow diagram

Is this correct? What i basically want to ask is that- Is it correct to consider a linked list as a data source. What happens in this program is that a text files contents are loaded into memory in a ...
0
votes
2answers
1k views

diagram for client/server communication

i am writing a client/server application. Now i want to do some basic diagrams about the communication, but I don`t know which kind UML-diagram i should choose. It should be really basic without going ...
1
vote
1answer
127 views

.NET Data Model is shown as XML and not as Diagram

That is. I format my computer and install the entire enviroment again, but I can't see the data model diagram. I mean, I open the data model (edmx file) and I see all the DB tables and DB information ...
3
votes
1answer
212 views

How do I use the diagrams library with GTK drawables?

I'm trying to learn how to draw diagrams using the diagrams library and the Cairo / GTK backend. I've got a blank window to appear, but my drawing won't render. What am I doing wrong? module Main ...
5
votes
1answer
130 views

Is there any software that can aid in explaining a software project throughly?

Our e-commerce web application project doesn't have any real or formal documentation. If I need to create documentation for the same in order to explain every technical bit about the website, which ...
3
votes
2answers
1k views

How to draw JMS queue?

Is there any symbol for JMS queue? I know e.g. databases, files, classes should be drawn in the same way, but what about JMS elements?
1
vote
3answers
319 views

c# class diagram generator integrated in application [closed]

Is there in c# a library or a simple console or other application that i can include with my project to generate class diagram from .cs file ? Im talking about something like the visual studio class ...
1
vote
2answers
272 views

Is there any tool for the data flow diagram similarly like Quick Sequence Diagram Editor

Is there any tools or any eclipse plugin for the data flow diagram which is similar like Quick Sequence Diagram Editor(http://sourceforge.net/projects/sdedit/) where we write some command and it only ...
0
votes
1answer
503 views

Java GUI for drawing a large, zoomable, interactive diagram

I have tried to draw a diagram in Swing with a large number (thousands) of JLabels inside a large number of nestled JPanels, all with different layouts. I made the whole diagram zoomable, zooming one ...
3
votes
1answer
173 views

Doxygen java interfaces & abstract classes

I've been testing doxygen on several of my projects recently. It seems that doxygen treat java interface, abstract class and class the same. There's no italic font or to suggest the type of the ...
0
votes
1answer
575 views

use case diagram confusion: generalization and dependency

I am working on a university project. I have the following issues. this is a publication system's use case diagram. as you see there is a confusion in it. I don't know exactly how and where to use ...
4
votes
1answer
2k views

Tool for Generating Graph from Xml data

I want to generate graph from large xml files. It is actually a calling context tree generated by an execution of the program. A small file looks like below: From this xml I would like to have a ...
0
votes
1answer
50 views

Association or usage-arrow between class and use-case?

I have the following use-case diagram: I want to say, that the actor can execute a use-case calle "add two numbers". When this use-case is executed, two instances of the class "Number" are ...
0
votes
2answers
405 views

Tooltip doesn't show properly in highcharts

I want to draw a diagram like this in highcharts: The diagram itself doesn't have any problem. But whenever I try to hover on any point in the diagram it doesn't render properly. You can see the ...
0
votes
4answers
1k views

Drawing an interactive ER Diagram for a web application

How can I draw an EER diagram from a database? I am using JSF and I want to represent my database schema having the tables with their attributes and the relationships between the tables in order to ...
0
votes
1answer
90 views

Visualizing Source

I'm trying to understand an application but its documentation really doesn't give me a good overview of how it works, so my question is : how can I get a diagram / flowchart / runtime architecture ...
1
vote
1answer
4k views

Auto Generate Database Diagram for PHPMyadmin DB?

i want tool for to generate DB diagram below, i need to generate particular db tables structure like below, how can i do that?...is there any free tool or application is available for that. i ...
0
votes
1answer
154 views

Threads in UML state machine diagram?

How do I represent execution threads in UML state machine diagram model?
2
votes
2answers
81 views

Does anyone know what tool this is? It seems to generate flowcharts from grammars

Does anyone know what tool Oracle is using on their documentation for flowcharts? Sample - http://docs.oracle.com/cd/E11882_01/server.112/e26088/functions215.htm If you follow the links, you'll see ...
1
vote
2answers
437 views

matplotlib.pyplot How to name different lines in the same plot?

Think about doing this: import matplotlib.pyplot as plt plt.plot(x_A,y_A,'g--') plt.plot(x_B,y_B,'r-o') plt.show() How would you go about giving both lines different names, i.e. like Microsoft ...

1 2 3 4 5 15