| By Yakov Fain | Article Rating: |
|
| August 17, 2005 12:00 PM EDT | Reads: |
31,866 |
You can create a sophisticated application that implements complex algorithms, but in many cases you sell its GUI part to your users. The presentation layer of plain vanilla HTML/JSP-based Web applications is usually pretty basic unless you use specialized software. Today we are testing the charting engine WebCharts3D 5.0 from GreenPoint.
Let me introduce myself: I am a Java developer with basic JSP skills and a stopwatch on my desk. My task is to show you how you can create a Web page in less than 20 minutes that retrieves the sales data from an external data source and displays them as a chart using WebCharts3D.
To set the scene, I downloaded and installed the beta version of the Tomcat 5.5 servlet container from Apache (http://jakarta.apache.org/tomcat/). Actually, WebCharts3D comes with an embedded Web server that can be used for test purposes, but I decided to use a commercial-grade server. I've also created a plain comma-delimited sales_data file with the annual sales data in a cross-tab form:
John 2002 7171.30I spent the next five minutes downloading and installing WebCharts3D 5.0 from www.gpoint.com.
Alex 2002 5921.00
Mary 2002 6273.00
Sam 2002 5092.00
John 2003 2980.30
Alex 2003 3928.00
Mary 2003 8905.00
Sam 2003 3093.90
John 2004 5095.30
Alex 2004 2000.00
Mary 2004 2870.00
Sam 2004 4900.90
Start WebCharts3D, and you'll see its Designer screen with a large variety of charts to choose from (some of them are shown in Figure 1). You can select one of the following: bar, pie, radar, dial, statistical, and Gantt charts.
Designing a Chart
Every chart consists of two parts: a style and a model (remember the MVC paradigm?). Internally, both style and model are generated in XML format.
For this demo I've selected one of the flavors of a 3D bar chart (it's the third icon in the first row in Figure 1). This opened the screen shown in Figure 2. On the right side you can modify multiple properties of the chart starting with colors to event processing.
To populate the chart with the data from our sales file just go to the XML Model tab, check the Crosstab box, press the button "Import From File" and select our sales_data file. You'll see the table with our data and XML with hard-code sales values. Switch to the tab Design again to make sure that the chart is populated with our data.
Since we don't want to create charts with hard-coded data, go to the tab CodeView, press the Options button, and select the model "Imported File" (for databases you'd select the model "Database Query"). The Designer immediately generates the JSP code as shown in Listing 1.
Please note that the line myChart.linkTo() points at my sales_data file as the data source.
You can immediately see how the chart will look in your Web browser. Let's launch the embedded server: select the Console tab at the bottom of the Designer's screen and press the Start button and wait a second for the message "Server Started on port 8802." To see your Sales chart just open your Web browser and enter the following URL: http://localhost:8802 as in Figure 3.
The next code snippet shows how you can get the data from a database using the JDBC-ODBC bridge:
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection dbConn = DriverManager.getConnection("jdbc:odbc:...",
"admin" , "User Password");
myChart.linkTo(dbConn,"select ProductName, Sales from Sales",false, false);
Note the links at the bottom of the screen in Figure 3. You've guessed it right! For example, press the PDF link, and see your chart in Adobe Acrobat Reader if you have it installed.
Flash and SVG-Animated Charts Some of the chart formats can be animated. To animate our sales chart using the Flash file format just select the SWF or SVG link while watching the chart in the embedded HTTP server (or set the chart type to SWF or SVG). You'll see how the bars start growing one after another. You can change their order of appearance by setting the Morphing attributes of your chart elements in the Designer. The charts can grow vertically or horizontally, you can add a blurring effect, and set the length and quality of your movie by playing with the framesCount and framesPerSecond properties. You can animate the entire chart or by row or by column. You can control the time of the animation, pauses between fazes, etc. If you want to get a "wow" from your users, add the animation to your charts.
Deploying the Sales Chart Under Tomcat
Just follow the simple steps below to deploy our chart under Tomcat (the process is literally the same in any J2EE-compliant servlet container):
- Copy ws50.jar into the WEB-INF\lib directory to make WebCharts3D-supporting classes available to Tomcat.
- Create the file getImage.jsp in the root directory of the Web server. This file is used internally to retrieve the generated image temporarily stored on the server. Go to Designer's File | Setup menu, select the Server tab and enter the application home directory, which in the case of a default Tomcat installation is C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps\ROOT
- Restart Tomcat.
- In the Designer's CodeView tab press the Save button and save the generated code shown in Listing 1 in Tomcat's root directory as sales.jsp. In the real world you'd copy and paste this code into one of your existing JSPs.
- Point your browser at http://localhost:8080/sales.jsp and you'll see a screen as in Figure 4.
The Web page is ready and my stopwatch shows that the entire process including the WebCharts installation took about 20 minutes. Of course, I've only demonstrated a small part of the WebCharts3D functionality, but the result is pretty impressive.
Published August 17, 2005 Reads 31,866
Copyright © 2005 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
About Yakov Fain
Yakov Fain is a Managing Director of Farata Systems, consulting, training and product company. He has authored several Java books, dozens of technical articles. SYS-CON Books released his latest co-authored book , Rich Internet Applications with Adobe Flex and Java: Secrets of the Masters in Spring 2007. Sun Microsystems has nominated and awarded Yakov with the title Java Champion. He leads the Princeton Java Users Group. He is an Adobe Certified Flex Instructor. Currently Yakov works on the book for O'Reilly "Enterprise Application Development with Flex". He twits at twitter.com/yfain.
![]() |
Sri Lakshmanan 07/29/05 08:41:07 AM EDT | |||
I've looking for Java charting packages that REALLY are 3D instead of just 2D made to look like it has perspective. A wireframe grid type chart with 3 d coordinates similar to the graphs that sophisticated packages like SPlus or Matlab would be awesome. Alas when we talk about 3D with Java charting packages , we really do not mean it has complete 3 D capability |
||||
![]() |
Omar 07/20/05 08:50:10 AM EDT | |||
C'mon, where were all the images you promissed along the article... I think it would be *more* instructive if you were showed different examples with the sales_database that you use as an example [maybe a flash example]. |
||||
![]() |
Java Developer's Journal 07/18/05 12:50:07 PM EDT | |||
How To Give Your Web Applications A Facelift With WebCharts3D To Make It A Blockbuster |
||||
- Performance of Java Compilers: An Empirical Study
- Java Kicks Ruby on Rails in the Butt
- Ulitzer’s Amazing First 30 Days in Public Beta
- 1st Annual Government IT Expo: Call for Papers Deadline July 15
- REA Is Where RIA Becomes the Norm
- Why an Application Grid?
- Will Ulitzer Dominate News Content on The Web? -Gartner
- Clear Toolkit 4: The Road Map
- Profiling Netbeans within Amazon EC2
- Java Persistence on the Grid: Approaches to Integration
- Performance of Java Compilers: An Empirical Study
- Java Kicks Ruby on Rails in the Butt
- Developing Rich Client Applications Using Swing - II
- The Right Time for Real Time Java
- Xpress Suite Adds Automatic Java to iPhone Conversion
- Initial Thoughts on IBM Acquisition of Sun Microsystems
- Ulitzer’s Amazing First 30 Days in Public Beta
- 1st Annual Government IT Expo: Call for Papers Deadline July 15
- Maximizing Java Performance with Bespoke Programming
- Pet Store with JavaFX 1.0.- Part I
- A Cup of AJAX? Nay, Just Regular Java Please
- Java Developer's Journal Exclusive: 2006 "JDJ Editors' Choice" Awards
- The i-Technology Right Stuff
- JavaServer Faces (JSF) vs Struts
- Rich Internet Applications with Adobe Flex 2 and Java
- Java vs C++ "Shootout" Revisited
- Bean-Managed Persistence Using a Proxy List
- Reporting Made Easy with JasperReports and Hibernate
- What's New in Eclipse?
- Creating a Pet Store Application with JavaServer Faces, Spring, and Hibernate








































