TechTip: Two Funny Charts: Generate Professional-Grade Charts in Your Programs, Part 9

General
Typography
  • Smaller Small Medium Big Bigger
  • Default Helvetica Segoe Georgia Times

In this tip, I present two slightly unusual types of chart, named "Bars of Stuff" and "Piles of Money." Some presentations require a more humorous and lighter tone, especially if the news isn't good!

 

After so many TechTips about serious charts, it's time to have a little fun, so let's start with "Bars of Stuff." This is basically a bar chart in which the bars are replaced with a cartoon-like object. The image choices include Train (default), Chocolate, Rope, Truffle, Worm, and Horse. From a technical point of view, this is a very simple chart: it supports two columns, "label" and "value," and multiple rows. There's a little trick on the rows, though: instead of showing only the title of the row next to the "bar," you can also include a string, defined by you.

 

Figure 1 depicts the example from the API's documentation:

 

091412Rafaelfigure1

Figure 1: The Trains example from the documentation page shows commuters by country.

 

Let's have a quick look at the template:

 

/$Header

<html>

<head>

   <link rel="stylesheet" type="text/css" href="http://visapi-gadgets.googlecode.com/svn/trunk/barsofstuff/bos.css"/>

   <title>

     /%PageTitle%/

   </title>

   <script type="text/javascript" src="http://visapi-gadgets.googlecode.com/svn/trunk/barsofstuff/bos.js"></script>

   <script type="text/javascript" src="http://www.google.com/jsapi"></script>

   <script type="text/javascript">

     google.load("visualization", "1");

   </script>

   <script type="text/javascript">

     function drawChart() {

       var data = new google.visualization.DataTable();

       data.addRows(/%TotalRows%/);

       data.addColumn('string', 'Label');

       data.addColumn('number', 'Value');

/$Row

       data.setCell(/%RowNbr%/, 0, '/%RowTitle%/');

       data.setCell(/%RowNbr%/, 1, /%RowValue%/, '/%RowValueLabel%/');

/$OptionsBegin

 

     var options = {

/$Option

     '/%OptionTitle%/': /%OptionValue%/

/$OptionsEnd

                   };

 

/$Footer

       var chartDiv = document.getElementById('chartdiv');

       var chart = new BarsOfStuff(chartDiv);

       chart.draw(data, options);

     }

 

     google.setOnLoadCallback(drawChart);

   </script>

</head>

<body>

   <div id="chartdiv"></div>

</body>

</html>

 

The only "new" thing in this template is the RowValueLabel variable, which will store the text that shows under the row title; I'm talking about the "10,000" under "France" on the first row of the example shown in Figure 1. There's no "Column" section, and the "Row" section is a hybrid between the "FirstRow" and "Row" sections of previously presented templates. This was possible because the "Bars of Stuff" chart supports only one value per row. The procedure that implements this template is called GenBOSChart, and it's very similar to the ones I've written for other chart types; the only difference is the handling of the aforementioned RowValueLabel variable. The sample program TSTGENBOS1 produces the chart shown in Figure 2:

 

091412Rafaelfigure2

Figure 2: Who said a bug was a bad thing?

 

If you take a look at the source code, you'll find the by-now-familiar filling of the procedure arrays (P_BOSRowDS and P_OptionDS, in this case), followed by the invocation of the procedure and the showing of the HTML page it generated.

 

I'd like to take a moment to explain the most important option of this chart: the "type" keyword. This is the way to indicate which object you want to use instead of the traditional bar; in this example, I'm using the "worm" attribute to produce the cute green bugs you see in Figure 2. Read the Bars of Stuff API documentation to find out what else you can customize on this chart.

 

Now it's up to you to choose where and when to use this less serious and more smile-inducing chart type!

 

The second part of this TechTip will focus on the "Piles of Money" chart type. As usual, let's start by reviewing its template:

 

/$Header

<html>

<head>

   <link rel="stylesheet" type="text/css" href="http://visapi-gadgets.googlecode.com/svn/trunk/pilesofmoney/pom.css"/>

   <title>

     /%PageTitle%/

   </title>

   <script type="text/javascript" src="http://visapi-gadgets.googlecode.com/svn/trunk/pilesofmoney/pom.js"></script>

   <script type="text/javascript" src="http://www.google.com/jsapi"></script>

   <script type="text/javascript">

     google.load("visualization", "1");

   </script>

   <script type="text/javascript">

     function drawChart() {

       var data = new google.visualization.DataTable();

       data.addRows(/%TotalRows%/);

       data.addColumn('string', 'Label');

       data.addColumn('number', 'Value');

/$Row

       data.setCell(/%RowNbr%/, 0, '/%RowTitle%/');

       data.setCell(/%RowNbr%/, 1, /%RowValue%/, '/%RowValueLabel%/');

/$OptionsBegin

 

     var options = {

/$Option

     '/%OptionTitle%/': /%OptionValue%/

/$OptionsEnd

                   };

 

/$Footer

       var chartDiv = document.getElementById('chartdiv');

       var chart = new PilesOfMoney(chartDiv);

       chart.draw(data, options);

     }

 

     google.setOnLoadCallback(drawChart);

   </script>

</head>

<body>

   <div id="chartdiv"></div>

</body>

</html>

 

As you can see from the template above, the structure of the "Piles of Money" chart is an almost exact copy of the "Bars of Stuff," with some changes on the Header and Footer sections. This led to the creation of a procedure similar to GenBOSChart, named GenPOMChart. All I've written about GenBOSChart directly applies to this new procedure. The result, however, is very different. Below you'll find the chart produced by the sample program TSTGENPOM1:

 

091412Rafaelfigure3

Figure 3: That's a lot of money!

 

You can display one of two currencies here; the sample program uses USD, which is also the chart's default, but you can also use EUR. Be sure to read this API's documentation, because there are a few more options to customize.

 

Even though you won't find samples for these charts on Google's Code Playground, you can still test them there. Here's how to do it: go to the chart's documentation page and copy the sample you'll find there. Next, go to the Code Playground, choose any chart type, click the "Edit HTML" button and delete all the code. Next, paste the sample code on the code window of the Playground. If everything appears on a single line, delete it and paste it on Notepad; select everything from Notepad and copy it again. Paste it in the code window and voilá!

 

Here's the complete source code for this series. If any part of this TechTip is not clear for you, feel free to contact me. However, I really recommend reading the whole series first, starting with Part 1, because each Tip details a bit of the process.

 

The next TechTip will discuss an API that is not a chart, but it might be equally important. I'll talk about the Table API.

Rafael Victoria-Pereira

Rafael Victória-Pereira has more than 20 years of IBM i experience as a programmer, analyst, and manager. Over that period, he has been an active voice in the IBM i community, encouraging and helping programmers transition to ILE and free-format RPG. Rafael has written more than 100 technical articles about topics ranging from interfaces (the topic for his first book, Flexible Input, Dazzling Output with IBM i) to modern RPG and SQL in his popular RPG Academy and SQL 101 series on mcpressonline.com and in his books Evolve Your RPG Coding and SQL for IBM i: A Database Modernization Guide. Rafael writes in an easy-to-read, practical style that is highly popular with his audience of IBM technology professionals.

Rafael is the Deputy IT Director - Infrastructures and Services at the Luis Simões Group in Portugal. His areas of expertise include programming in the IBM i native languages (RPG, CL, and DB2 SQL) and in "modern" programming languages, such as Java, C#, and Python, as well as project management and consultancy.


MC Press books written by Rafael Victória-Pereira available now on the MC Press Bookstore.

Evolve Your RPG Coding: Move from OPM to ILE...and Beyond Evolve Your RPG Coding: Move from OPM to ILE...and Beyond
Transition to modern RPG programming with this step-by-step guide through ILE and free-format RPG, SQL, and modernization techniques.
List Price $79.95

Now On Sale

Flexible Input, Dazzling Output with IBM i Flexible Input, Dazzling Output with IBM i
Uncover easier, more flexible ways to get data into your system, plus some methods for exporting and presenting the vital business data it contains.
List Price $79.95

Now On Sale

SQL for IBM i: A Database Modernization Guide SQL for IBM i: A Database Modernization Guide
Learn how to use SQL’s capabilities to modernize and enhance your IBM i database.
List Price $79.95

Now On Sale

BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

$

Book Reviews

Resource Center

  •  

  • LANSA Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.

  • The MC Resource Centers bring you the widest selection of white papers, trial software, and on-demand webcasts for you to choose from. >> Review the list of White Papers, Trial Software or On-Demand Webcast at the MC Press Resource Center. >> Add the items to yru Cart and complet he checkout process and submit

  • SB Profound WC 5536Join us for this hour-long webcast that will explore:

  • Fortra IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn: