Main > Free Download Search >

Free jgraphpad 5.6.3 software for linux

jgraphpad 5.6.3

Sponsored Links
Sponsored Links
Sort by >> Relevance
rss
Secleted [ 0 ] software to compare
Results 1 - 15 of about 7
JGraphpad 5.6.3

JGraphpad 5.6.3


JGraphpad is a diagram editor. more>>
JGraphpad is a powerful, free diagram editor based on JGraph. It is currently available in English, French and German. With JGraphpad, you can create flow charts, maps, UML diagrams, and many other diagrams.
JGraphpad is provided as an example for the JGraph Swing component. Check out the JGraphpad applet and Web Start version.
JGraphpad is a versatile product that may be used to display and edit any type of diagram in the following fields:
- Knowledge Visualization
- Business Diagramming
- Software Engineering
- Monitoring and Configuration
- Transport Networks
- Workflow Systems
Main features:
- Supported Languages: English, French, German, Spanish, Japanese, Indonesian, Thai, Portuguese
- Flexible configuration, enable/disable features, toolbar buttons, add custom commands
- Programmable toolbar, GUI, and features (create your own toolbar buttons)
- Supports a wide range of platforms (Windows, Linux, Mac, Solaris)
- Copy and paste or drag and drop to and from Java and native applications
- Import/Export Text files, GXL, GIF, JPG, PNG, EPS, HTML Image maps, and GraphViz Dot
- Object library with flexible creation and management
- Shortest path and "spanning tree" selection
- 8 Different Automatic layouts
- Overview with Panning and Zoom
- Command History
- Printing and much more...
Enhancements:
- The release now compiles with JGraph 5.6.3, changing the use of graph references in various renderers.
- Some unused code was removed and various Javadocs were cleaned up.
<<less
Download (1.7MB)
Added: 2005-08-09 License: GPL (GNU General Public License) Price:
2745 downloads
JGraph 5.9.2.0

JGraph 5.9.2.0


JGraph is the leading Open Source Java Graph Visualization Library. It follows Swing design patterns to provide an API familiar to Swing programmers and functionality that provides a range of features. Graph visualization is a central requirement for applications such as workflow editors, computer and telecommunication networks display, flowcharts, VLSI and CAD, business process modeling, organizational charts, entity-relationship diagrams... more>>

JGraph - JGraph is the leading Open Source Java Graph Visualization Library. It follows Swing design patterns to provide an API familiar to Swing programmers and functionality that provides a range of features. Graph visualization is a central requirement for applications such as workflow editors, computer and telecommunication networks display, flowcharts, VLSI and CAD, business process modeling, organizational charts, entity-relationship and cause and effect diagrams, and much more.

The core JGraph library provides all the features required in a graph visualization library. Built on top of the core are JGraph Layout Pro and JGraphpad Pro. JGraph Layout Pro provides graph layouts that automatically position your nodes. There is a hierarchical layout for workflows, tree layouts for organization charts and so on. JGraphpad Pro is a complete application framework that enables you to rapidly prototype your application, dramatically reducing your time to market for your product.


Enhancements:
Version 5.9.2.0

General bug fixing


System Requirements:
<<less
Download (136.7Kb)
Added: 2006-09-01 License: Free Price: Free
13 downloads
JGraphpad Community Edition 5.8.1.1

JGraphpad Community Edition 5.8.1.1


JGraphpad is a diagram editor for Swing that offers the functionality to create flow charts, maps, and UML diagrams. more>>
JGraphpad is a diagram editor for Swing that offers the functionality to create flow charts, maps, and UML diagrams.
This release compiles with JGraph 5.7.3.1. Toolbox buttons to create edges or vertices no longer persist selection state. The former behaviour can be restored by setting GPMarqueeHandler.remanent to true.
The GPMarqueeHandler, GPGraph, DefaultGraphModelFileFormatXML, and GPUserObject classes were moved to org.jgraph and their constructors are now protected so that JGraphpad is easier to extend from as a library without changing its code. Various warnings were removed and a general code cleanup undertaken.
Main features:
- Export to XML and JPG
- Built-in Object Library
- Overview
- Interactive Layout
- Print Support
- Page View
- Automatic Zoom
- Grid
- Drag and Drop
- Search
- Minimum Spanning Tree
- Shortest Path
- Component Count
- Background Image
<<less
Download (0.94MB)
Added: 2006-05-25 License: GPL (GNU General Public License) Price:
1249 downloads
GD::Graph 1.4308

GD::Graph 1.4308


GD::Graph is a graph plotting module for Perl 5. more>>
GD::Graph is a graph plotting module for Perl 5.

SYNOPSIS

use GD::Graph::moduleName;

GD::Graph is a perl5 module to create charts using the GD module. The following classes for graphs with axes are defined:

GD::Graph::lines

Create a line chart.

GD::Graph::bars and GD::Graph::hbars

Create a bar chart with vertical or horizontal bars.

GD::Graph::points

Create an chart, displaying the data as points.

GD::Graph::linespoints

Combination of lines and points.

GD::Graph::area

Create a graph, representing the data as areas under a line.

GD::Graph::mixed

Create a mixed type graph, any combination of the above. At the moment this is fairly limited. Some of the options that can be used with some of the individual graph types wont work very well. Bar graphs drawn after lines or points graphs may obscure the earlier data, and specifying bar_width will not produce the results you probably expected.

Additional types:

GD::Graph::pie

Create a pie chart.

USAGE:

Fill an array of arrays with the x values and the values of the data sets. Make sure that every array is the same size, otherwise GD::Graph will complain and refuse to compile the graph.

@data = (
["1st","2nd","3rd","4th","5th","6th","7th", "8th", "9th"],
[ 1, 2, 5, 6, 3, 1.5, 1, 3, 4],
[ sort { $a $b } (1, 2, 5, 6, 3, 1.5, 1, 3, 4) ]
);

If you dont have a value for a point in a certain dataset, you can use undef, and the point will be skipped.

Create a new GD::Graph object by calling the new method on the graph type you want to create (chart is bars, hbars, lines, points, linespoints, mixed or pie).
my $graph = GD::Graph::chart->new(400, 300);

Set the graph options.

$graph->set(
x_label => X Label,
y_label => Y label,
title => Some simple graph,
y_max_value => 8,
y_tick_number => 8,
y_label_skip => 2
) or die $graph->error;
and plot the graph.
my $gd = $graph->plot(@data) or die $graph->error;

Then do whatever your current version of GD allows you to do to save the file. For versions of GD older than 1.19 (or more recent than 2.15), youd do something like:

open(IMG, >file.gif) or die $!;
binmode IMG;
print IMG $gd->gif;
close IMG;
and for newer versions (1.20 and up) youd write
open(IMG, >file.png) or die $!;
binmode IMG;
print IMG $gd->png;
or
open(IMG, >file.gd2) or die $!;
binmode IMG;
print IMG $gd->gd2;

Then theres also of course the possibility of using a shorter version (for each of the export functions that GD supports):

print IMG $graph->plot(@data)->gif;
print IMG $graph->plot(@data)->png;
print IMG $graph->plot(@data)->gd;
print IMG $graph->plot(@data)->gd2;

If you want to write something that doesnt require your code to know whether to use gif or png, you could do something like:

if ($gd->can(png)) { # blabla }

or you can use the convenience method export_format:

my $format = $graph->export_format;
open(IMG, ">file.$format") or die $!;
binmode IMG;
print IMG $graph->plot(@data)->$format();
close IMG;

or for CGI programs:
use CGI qw(:standard);
#...
my $format = $graph->export_format;
print header("image/$format");
binmode STDOUT;
print $graph->plot(@data)->$format();

(the parentheses after $format are necessary, to help the compiler decide that you mean a method name there)

<<less
Download (0.14MB)
Added: 2007-04-24 License: Perl Artistic License Price:
915 downloads
Liquid War 5.6.3

Liquid War 5.6.3


Liquid War is a unique multiplayer wargame. more>> <<less
Download (4.9MB)
Added: 2005-11-30 License: GPL (GNU General Public License) Price:
814 downloads
Tiki CMS/Groupware 1.9.7

Tiki CMS/Groupware 1.9.7


Tiki CMS/Groupware (aka TikiWiki) is a powerful open-source Content Management System. more>>
Tiki CMS/Groupware (aka TikiWiki) is a powerful open-source Content Management System (CMS) and Groupware that can be used to create all sorts of Web applications, intranets, portals, sites, and extranets.
Major features include articles, forums, newsletters, blogs, a file/image gallery, a Wiki, drawing, trackers, a directory, polls/surveys and quizzes, a FAQ, chat, a banner management system, Webmail, a calendar, Ephemerides, maps, charts, Mobile Tiki (PDA and WAP access), RSS feeds, a category system, a theme control center, workflow, live support, Shoutbox, ACLs, and more.
Main features:
- The Wiki
- Image Gallery
- Articles and submissions
- Blogs
- JgraphPad drawings
- Mobile Tiki
- Voice Tiki
- Banner ads
- Dynamic Content System
- File Galleries
- Featured Links
- Comments
- Forums
- ChatRooms
- Communications center
- Polls
- Category system
- FAQs
- Quizzes
- RSS feeds
- HTML pages
- HTML pages dynamic
- Surveys
- Trackers
- Maps
- Newsletters
- Directory
- Ephemerides
- Shoutbox
- Search
- Games
- Live Support System
- Galaxia Workflow Engine
- Charts
- My Tiki section
Enhancements:
- This release contains fixes for some security issues, many bugfixes, enhancements, and new features.
<<less
Download (8.6MB)
Added: 2006-12-05 License: LGPL (GNU Lesser General Public License) Price:
1053 downloads
Icon execute feedback 0.4

Icon execute feedback 0.4


Icon execute feedback replaces the zooming rectangle that is drawn if you activate an icon in konqueror for execution feedback. more>>
Icon execute feedback replaces the zooming rectangle that is drawn if you activate an icon in konqueror for execution feedback. It removes the rectangle and instead zooms the icon bigger and fades it out while doing. Its like MacOS X execution feedback.
Currently works in Konqueror, Kicker and all file dialogs. You will need a machine > 600 MHz for this though, else the
animation may be slow.
This is a patch against kdebase-3.5.6 and kdelibs-3.5.6
So you have to recompile the two packages. Please only do
that if you are experienced enough with recompiling KDE.
Apply the patches as follows:
1. Get kdebase-3.5.6
2. Get kdelibs-3.5.6
3. Get this patch
4. Unpack all archives
5. Change to the dir you unpacked kdelibs
6. Execute "patch -p1 7. Recompile kdelibs
8. Install kdelibs (necessary as some header files changed)
9. Change to the dir you unpacked kdebase
7. Execute "patch -p1 8. Recompile kdebase
9. Install kdebase
10. Logout of kde and then login again.
11. Watch the icons zooming
Have fun. If you dont understand the step by step manual above please inform yourself about how to recompile KDE on kde.org
Enhancements:
- Slowed down the animation a bit
<<less
Download (0.073MB)
Added: 2007-03-07 License: GPL (GNU General Public License) Price:
961 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 1
  • 1