Круговые диаграммы внезапно перестали работать, extjs 3

Это немного странная проблема, я использую круговые диаграммы в extjs 3, они отлично работали в моем проекте, но вдруг он перестал работать (я не менял код с 3 месяцев, и он работал ОТЛИЧНО)!!

Я опубликую код здесь, и я надеюсь, что кто-то может помочь

items: [new Ext.Panel({
 width: 540,
 height: 350,
 title: 'Employee Arrival Times',
 items: [{
     store: empArrivalsStore,
     width: 500,
     height: 300,
     xtype: 'piechart',
     dataField: 'numOfTimes',
     categoryField: 'arrival',
     title: 'Employee Arrival Times',
     //extra styles get applied to the chart defaults
     extraStyle:
     {
         legend:
         {
             display: 'bottom',
             padding: 5,
             font:
             {
                 family: 'Tahoma',
                 size: 13
             }
         }
     }
 }]
}),
new Ext.Panel({
title: 'Vacation Requests',
width: 540,
height: 365,
items: [{
     store: vacRequestsStore,
     width: 500,
     height: 300,
     xtype: 'piechart',
     dataField: 'numOfTimes',
     categoryField: 'vacationType',
     //extra styles get applied to the chart defaults
     extraStyle:
     {
         legend:
         {
             display: 'bottom',
             padding: 5,
             font:
             {
                 family: 'Tahoma',
                 size: 13
             }
         }
     }
 }]
}),
new Ext.Panel({
title: 'Working & Vacation Days',
width: 540,
height: 415,
items: [{
     store: workingVacationsStore,
     width: 500,
     height: 300,
     xtype: 'piechart',
     dataField: 'numOfTimes',
     categoryField: 'dayType',
     //extra styles get applied to the chart defaults
     extraStyle:
     {
         legend:
         {
             display: 'bottom',
             padding: 5,
             font:
             {
                 family: 'Tahoma',
                 size: 13
             }
         }
     }
 }]
}),
new Ext.Panel({
title: 'Completed Working Hours',
width: 540,
height: 395,
items: [{
     store: compWorkingHoursStore,
     width: 500,
     height: 300,
     xtype: 'piechart',
     dataField: 'numOfTimes',
     categoryField: 'dayType',
     //extra styles get applied to the chart defaults
     extraStyle:
     {
         legend:
         {
             display: 'bottom',
             padding: 5,
             font:
             {
                 family: 'Tahoma',
                 size: 13
             }
         }
     }
 }]
})

0 ответов

Другие вопросы по тегам