Hello
I try to use your plugin but I get that message :
uncaught exception: Ext.Loader is not enabled, so dependencies cannot be resolved dynamically. Missing required class: Ext.chart.TitleChart
BTW, in my code (it's ASP.NET), I have :
Code:
<script type="text/javascript" src="jsFile/ext-all.js" />
<script type="text/javascript">
Ext.Loader.setConfig({
enabled: true,
disableCaching: true,
paths: { 'Ext': "/app/" }
});
</script>
<script src="jsFile/Chart.js" type="text/javascript"></script>
<script src="jsFile/TitleChart.js" type="text/javascript"></script>
....
I add that to my main include :
Code:
Ext.require('Ext.ux.chart.Chart');Ext.require('Ext.chart.TitleChart');
Ext.require('Ext.ux.chart.TitleChart');
I have already that :
Code:
Ext.require(['*']);
but epic fail...
I called the chart like that (not sure it will be good):
Code:
var ETTRChart= Ext.create('Ext.chart.TitleChart', { animate: true,
store: stoETTR,
title: 'ETTR',
titleFont: 'bold 16px sans-serif',
titlePadding: 5,
titleMargin: 5,
insetPadding: 5,
shadow: false,
BTW, your example works well...Could you help me please?