Book Image

Oracle JET for Developers

By : Raja Malleswara Rao Malleswara Rao Pattamsetti
Book Image

Oracle JET for Developers

By: Raja Malleswara Rao Malleswara Rao Pattamsetti

Overview of this book

This book will give you a complete practical understanding of the Oracle JavaScript Extension Toolkit (JET) and how you can use it to develop efficient client-side applications with ease. It will tell you how to get your own customized Oracle JET set up. You'll start with individual libraries, such as jQuery, Cordova, and Require.js. You'll also get to work with the JavaScript libraries created by Oracle, especially for cloud developers. You'll use these tools to create a working backend application with these libraries. Using the latest Oracle Alta UI, you'll develop a state-of-the-art backend for your cloud applications. You'll learn how to develop and integrate the different cloud services required for your application and use other third-party libraries to get more features from your cloud applications. Toward the end of the book, you'll learn how to manage and secure your cloud applications, and test them to ensure seamless deployment.
Table of Contents (17 chapters)
Title Page
Credits
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Visualization components


Presentation of hierarchical data is an art. You can present it using a simple parent-child kind of tabular representation, as well as with visualization components such as charts and gauges that enhance the user experience of the way hierarchical data is presented. In this section, we will review the set of Oracle JET visualization components that help us present hierarchical data in the most presentable form.

The following are some of the key visualization components of the Oracle JET framework, along with the corresponding API provided by the framework:

Charts

Charts are the basic visualization components for representing multidimensional data in a graphical illustration. Oracle JET lets us generate diverse chart types, from area to stock, using the ojChart component as listed in the previous section. Let us review a basic area chart example.

Area charts

Create an ojChart component using the type area binding with an ID. Provide different values for the groups and...