Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 
paschmann
Advisor
Advisor
0 Kudos

*Introduction*     

After developing multiple iOS apps (SAP Note Viewer for iPad  (SAP Note Viewer for iPad) and iPhone  (SAP Note Viewer for iPhone), iOS CRM  (iOS CRM for SAP and iPad - A free Mobile CRM App)) I recently stumbled across one of my biggest hurdles so far (aside from learning Obj. C!) in creating a Sales dashboard within a native application. Charting and Graphing in business applications, including SAP, is a everyday necessity providing users, managers and CEO’s a visual representation of important, monotonous and a downright boring set of data.

Dashboards, charts and graphs have become a common place within organizations and new releases of Business Objects BI 4, are making these easy to deploy, user friendly, interactive and can be very helpful in making game time decisions. Utilizing these visualizations from a mobile platform is something which is being actively developed ({code:html}Business Explorer for iPhone{code} for example) but currently there are very few plugins/frameworks/controls or libraries which make adding custom visualizations to your XCode project easy. A good example of some great looking charts in iOS would be Roambi  (http://www.roambi.com/). In my quest to solve this challenge I came across a solution which allowed me to mashup javascript and objective c creating a solution which is working fairly well so far and felt like some others developing on this “newish” platform might find helpful. While my solution does not come close to being comparative to products like Roambi, it does provide some tricks to making charting fairly simple for anyone wanting to do so. This post will be

Part 1 of the series covering the charting portion and Part 2 will run through the process of actually retrieving data from SAP using web services.       

*Finding a framework*     

When I first had the requirement of building a sales dashboard within iOS I started out with {code:html}Core-Plot{code} but was quickly frustrated with the difficult installation and fairly complex methods to implement a basic pie chart. Some of the other issues included a small user base ({code:html}but helpful google groups forum{code}), little documentation with examples on implementation and so on. After a week of struggling, I decided to take a alternative route in using UIWebViews to display charts written using Javascript within my native application. It is a slightly unconventional method and does have its own drawbacks, some of them being:   

-          Non-native look and feel   

-          Difficulty with touch interaction (sometimes buggy)   

-          Depending on charting framework some apps will require internet connectivity to render.   

Some Advantages:   

-          Extremely quick and easy to implement.   

-          Highly configurable look  

-          High re-usability   

-          Generally a large user or support base   

-          Open Source   

-          Many are Free   

While working on this project, I evaluated many different Javascript Charting libraries, including the[ Google Chart API | http://code.google.com/apis/chart/], Flot  (http://code.google.com/p/flot/), Highcharts   (http://www.highcharts.com/)(not free for commercial use), gRaphael   (http://g.raphaeljs.com/)to name a few. Here is a nice compilation of the charts and some comparisons. http://www.splashnology.com/blog/javascripts/290.html  (http://www.splashnology.com/blog/javascripts/290.html) . After a considerable amount of testing I ended up picking Highcharts. The nice aspect to Highcharts was its wide range of charts, a very basic way of providing data to the chart and the charts would still work “offline”. It was also open source and free for non-commercial use ($80 for a basic license). The product can be used on iOS devices and supports the touchscreen. If you are looking to create very specialized visualizations I would recommend checking out InfoVis Toolkit  (http://thejit.org/demos/) which includes icicle, Treemaps, force directed and even sunburst type charts.

After testing all the packages in a little demo app I was very close to using flot, since it had the easiest input of data. But no interaction was supported on the iPad. gRaphael was next, it supported touch interaction and data input was also easy but it did not have the wide range of graphs and themes that Highcharts did. So in the end I pulled the trigger on highcharts and started coding away.     Another good option was the Google Chart API which has a really simple online chart wizard and would be quick and easy to implement since it uses their servers to create the chart and simply returns an image to the device window (in our case the UIWebView). The biggest downside was limited interactivity and the fact it required a internet connection to render the charts. With a local javascript option, data could be stored in a cache or db and update when the datasource becomes available.     

*Developing the application*   

Here are a couple screenshots of the application displaying the charts (note all data is randomized).

Some Basic Chart testing with flot ....

 

*Finished App (more pictures at bottom)*   

**** All data is randomized and not relevant ***


*   !http://www.paulaschmann.com/bi1.png|height=480|alt=|width=626|src=http://www.paulaschmann.com/bi1.pn...!             

*How to add and use the Javascript libraries in XCode*   

Here is a simple view of how I handle the code and data within XCode. 

1. Download the Javascript reporting package from your preferd chart site. In my case: http://www.highcharts.com/download  (http://www.highcharts.com/download)   2. Add or import the files into XCode resources. (I suggest creating a group called JS).

3. When adding a resource to XCode it will generally be marked as being needed to be compiled. Ensure that the files are not listed as being "Compiled". The easiest way is to simply drag the files from Targets -> Your Project Name -> Compiled Sources  into Targets -> Your Project Name -> Copy Bundle Resources.

1 Comment
Labels in this area