I have create a pie-chart using ExtJS 3.2, but it is not rendering in Internet Explorer 8, can anyone suggest me what is the problem. Below is my code for pie-chart:
function customPieChart(dataStore) {
var store = new Ext.data.JsonStore({
fields: ['responseType', 'total'],
data: dataStore
});
var pan = new Ext.Panel({
width: 400,
height: 400,
title: 'Non Acceptable to Acceptable Chart',
items: {
store: store,
xtype: 'piechart',
dataField: 'total',
categoryField: 'responseType',
extraStyle:
{
legend:
{
display: 'bottom',
padding: 5,
font:
{
family: 'Tahoma',
size: 13
}
}
}
}
});
var win = new Ext.Window({ items: pan, layout: 'fit', width: 500, height: 300}).show();
}
thanks in advance