Yes. For yAxis with different scales use the left and right axis.
Code:
xtype: 'chart',
width: 400,
height: 300,
store: myStore,
axes: [
{
//title: 'Size',
type: 'Numeric',
position: 'left',
fields: ['sizeInBytes'],
minimum: 0
},{
//title: 'Run Time',
type: 'Numeric',
position: 'right',
fields: ['runTimeMin'],
minimum: 0
},{
//title: 'Date',
type: 'Time',
position: 'bottom',
fields: ['startTime'],
dateFormat: 'm/d/y h:i A'
}
],
series: [
{
type: 'column',
axis: 'left',
xField: 'startTime',
yField: 'sizeInBytes'
},{
type: 'line',
axis: 'right',
xField: 'startTime',
yField: 'runTimeMin'
}
]