dusoo
25 Aug 2010, 12:18 AM
Hi,
is it possible to have different chart color for data below 90% of yField ?
Thanks a lot for any tips,
D.
var chart = new Ext.Panel({
iconCls:'chart',
title: 'availability per hour',
frame:true,
items: {
xtype: 'columnchart',
store: chart_store2,
xField: 'hh',
yField: 'avail',
yAxis: new Ext.chart.NumericAxis({
title: '[%]',
maximum: 100
}),
xAxis: new Ext.chart.CategoryAxis({
title: 'hour'
})
}
});
is it possible to have different chart color for data below 90% of yField ?
Thanks a lot for any tips,
D.
var chart = new Ext.Panel({
iconCls:'chart',
title: 'availability per hour',
frame:true,
items: {
xtype: 'columnchart',
store: chart_store2,
xField: 'hh',
yField: 'avail',
yAxis: new Ext.chart.NumericAxis({
title: '[%]',
maximum: 100
}),
xAxis: new Ext.chart.CategoryAxis({
title: 'hour'
})
}
});