Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Use CSS code below in your custom CSS file:</p> <pre><code>.x-body { font-family: Tahoma; font-size: 11px; color: #333; } </code></pre> <p>Your custom CSS file comes after <strong>ext-all.css</strong> file like this:</p> <pre><code>&lt;link href="ext/resources/css/ext-all.css" rel="stylesheet" type="text/css"&gt; &lt;link href="mycss.css" rel="stylesheet" type="text/css"&gt; </code></pre> <p>Of course you can use <code>&lt;style&gt;</code> tag instead.</p> <p><strong>Edit:</strong> (for the comment)</p> <p>For <strong>Panel Titles</strong> use this:</p> <pre><code>.x-panel-header-text-default, .x-panel-header-text-default-framed { font-family: Tahoma; font-size: 11px; color: #333; } </code></pre> <p>For <strong>Charts</strong> it's different. Because they use Theme for styling. So you can create a theme and use it for charts. To create theme you can do something like this:</p> <pre><code>Ext.define('Ext.chart.theme.MyTheme', { extend:'Ext.chart.theme.Base', constructor: function() { Ext.chart.theme.MyTheme.superclass.constructor.call(this, { axisLabelBottom: { fill: '#333', font: 'Tahoma 11px' }, axisLabelLeft: { fill: '#333', font: 'Tahoma 11px' }, // other configs }); } }); </code></pre> <p>To see all available configs, check the link below and find <strong>Theming</strong> title:<br/> <a href="http://www.sencha.com/learn/drawing-and-charting/" rel="nofollow">http://www.sencha.com/learn/drawing-and-charting/</a></p> <p>To use <strong>'MyTheme'</strong> for your charts, you can do this:</p> <pre><code>{ // ... xtype: 'chart', theme: 'MyTheme', // .. } </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload