Search icon CANCEL
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Save more on your purchases!
Savings automatically calculated. No voucher code required
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Learning Highcharts

You're reading from  Learning Highcharts

Product type Book
Published in Dec 2012
Publisher Packt
ISBN-13 9781849519083
Pages 362 pages
Edition 1st Edition
Languages

Table of Contents (19) Chapters

Learning Highcharts
Credits
Foreword
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. Web Charts 2. Highcharts Configurations 3. Line, Area, and Scatter Charts 4. Bar and Column Charts 5. Pie Charts 6. Gauge, Polar, and Range Charts 7. Highcharts APIs 8. Highcharts Events 9. Highcharts and jQuery Mobile 10. Highcharts and Ext JS 11. Running Highcharts on the Server Side Index

Building a chart with multiple series types


So far we have learned about the line, columns, and pie series types. It's time to bring all these different series presentations into a single chart. In this section, we use the annual data from 2008 through 2011 to plot three different kinds of series type—column, line, and pie. The column type represents the yearly number of games sold for each type of gaming console. The pie series shows the annual number of gaming consoles sold for each vendor. The last one is the spline series type that discloses how many new game titles there are in total for all the consoles released each year.

In order to enforce the whole graph to use the same color scheme for each type of gaming console, we have to manually assign a color code for each data point in the pie charts and the columns series:

    var wiiColor = '#BBBBBB';
    var x360Color = '#89A54E';
    var ps3Color = '#4572A7';
    var splineColor = '#FF66CC';

We then decorate the chart in a more funky...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $15.99/month. Cancel anytime}