July 2015
Beginner
452 pages
8h 34m
English
Chart themes are classes that contain preconfigured looks for our charts. This one has been added to the Ext JS framework since version 5.0.1. So, for you to get a clearer idea, let's take a look at the ext-5.x.x/packages/sencha-charts/src/chart/theme folder. You will see many files, as shown here:

These files or themes (classes) extend the Ext.chart.theme.Base class. Also, these classes are singleton (singleton:true) in order to use the same instance when referenced. As an example, let's make a duplicate of the first code example (bar chart):
Ext.require([ 'Ext.*', 'Ext.draw.*', 'Ext.chart.*' ...
Read now
Unlock full access