Creating a pie chart

This recipe shows how to create a pie chart and work with some interesting features offered by the framework.

Getting ready

Make sure that you have set up your development environment by following the recipes outlined in Chapter 1.

How to do it...

Carry out the following steps:

  1. Create and open a new file named ch07_09.js and paste the following code into it:
    Ext.setup({ onReady: function() { var store = new Ext.data.JsonStore(...); //defined in the Area Chart recipe var chart = new Ext.chart.Chart({ fullscreen: true, width: 500, height: 300, animate: true, store: store, legend: { position: { portrait: 'bottom', landscape: 'left' } }, series: [{ type: 'pie', angleField: 'data1', showInLegend: true, label: { field: 'name', display: ...

Get Sencha Touch Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.