Comments
litl_phil wrote: While it's nice that Google and Acer share the vision of cloud-based computing, it's also worth noting that we at litl already have a webbook on the market (available at litl.com) that runs our own cloud-based OS. Unlike Chrome, litlOS is focused on creating a new and better web experience for the home, so we don't have the usual browser interface, we have our own innovative UI. In conjunction with easel mode (litl's inverted-V position) and our growing cohort of litl channels (special apps t...
Cloud Expo on Google News


2008 West
DIAMOND SPONSOR:
Data Direct
SOA, WOA and Cloud Computing: The New Frontier for Data Services
PLATINUM SPONSORS:
Red Hat
The Opening of Virtualization
GOLD SPONSORS:
Appsense
User Environment Management – The Third Layer of the Desktop
Cordys
Cloud Computing for Business Agility
EMC
CMIS: A Multi-Vendor Proposal for a Service-Based Content Management Interoperability Standard
Freedom OSS
Practical SOA” Max Yankelevich
Intel
Architecting an Enterprise Service Router (ESR) – A Cost-Effective Way to Scale SOA Across the Enterprise
Sensedia
Return on Assests: Bringing Visibility to your SOA Strategy
Symantec
Managing Hybrid Endpoint Environments
VMWare
Game-Changing Technology for Enterprise Clouds and Applications
Click For 2008 West
Event Webcasts

2008 West
PLATINUM SPONSORS:
Appcelerator
Get ‘Rich’ Quick: Rapid Prototyping for RIA with ZERO Server Code
Keynote Systems
Designing for and Managing Performance in the New Frontier of Rich Internet Applications
GOLD SPONSORS:
ICEsoft
How Can AJAX Improve Homeland Security?
Isomorphic
Beyond Widgets: What a RIA Platform Should Offer
Oracle
REAs: Rich Enterprise Applications
Click For 2008 Event Webcasts
SYS-CON.TV
Top Links You Must Click On


How To Give Your Web Applications A Facelift With WebCharts3D To Make It A Blockbuster
Give your Web app a facelift with WebCharts3D to make it a blockbuster

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.30
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
I spent the next five minutes downloading and installing WebCharts3D 5.0 from www.gpoint.com.

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):

  1. Copy ws50.jar into the WEB-INF\lib directory to make WebCharts3D-supporting classes available to Tomcat.
  2. 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
  3. Restart Tomcat.
  4. 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.
  5. Point your browser at http://localhost:8080/sales.jsp and you'll see a screen as in Figure 4.
The yellow box is a cool feature called annotation - not to be confused with Java 5.0 annotations - that shows the underlying data as you move a mouse pointer over the chart. If you know Swing, it's similar to tooltips. Figure 4 shows the default annotation, but you can change the text the same way you'd change any other chart property.

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.

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.

In order to post a comment you need to be registered and logged in.

Register | Sign-in

Reader Feedback: Page 1 of 1

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

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].

How To Give Your Web Applications A Facelift With WebCharts3D To Make It A Blockbuster
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.


Your Feedback
Sri Lakshmanan wrote: 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 wrote: 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 wrote: How To Give Your Web Applications A Facelift With WebCharts3D To Make It A Blockbuster 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.
Enterprise Open Source Magazine Latest Stories . . .
Oracle seems to have divided the open source ranks over the MySQL delay it’s having closing its acquisition of Sun. Eben Moglin, the GPL’s most ardent defender and delineator, the lawyer who has worked hand in glove for years with the Free Software Foundation’s founder Richard Stallman...
Cloud computing is a game changer. The cloud is disrupting traditional software and hardware business models by disrupting how IT service gets delivered. Entrepreneurial opportunities abound as this classic disruptive technology begins to proliferate, so it is no surprise that SYS-CON'...
The irony is that Oracle has advanced MySQL, lost money in the process, and helped its competitors - all at the same time. When Oracle buys Sun and controls MySQL the gift (other than to Microsoft SQL Server) keeps on giving as the existential threat to RDBs is managed by Redwood Shore...
WSO2, the open source SOA company, today announced the launch of the WSO2 Cloud Platform. Available today, the new WSO2 Cloud Platform features a family of WSO2 Cloud Virtual Machines; WSO2 Cloud Connectors for enabling fast, secure cloud services; and the multi-tenant WSO2 Governance-...
Now, the open source Mozilla Thunderbird client software can be used with Open-Xchange collaboration software. The "Community OXtender for Thunderbird" software connector gives users full access to appointments and contacts stored in the Open-Xchange Server and enables them to use Thun...
Morph Labs, a leading provider of enterprise cloud computing technology, today announced an introductory trial of the Morph CloudServer, an open, standards-based server IT organizations can use to rapidly model and evaluate their cloud implementations. A miniature "Cloud Environment in...
Subscribe to the World's Most Powerful Newsletters
Subscribe to Our Rss Feeds & Get Your SYS-CON News Live!
Click to Add our RSS Feeds to the Service of Your Choice:
Google Reader or Homepage Add to My Yahoo! Subscribe with Bloglines Subscribe in NewsGator Online
myFeedster Add to My AOL Subscribe in Rojo Add 'Hugg' to Newsburst from CNET News.com Kinja Digest View Additional SYS-CON Feeds
Publish Your Article! Please send it to editorial(at)sys-con.com!

Advertise on this site! Contact advertising(at)sys-con.com! 201 802-3021


SYS-CON Featured Whitepapers
ADS BY GOOGLE