Skip to content

Instantly share code, notes, and snippets.

@philogb
Created April 2, 2011 18:28
Show Gist options
  • Save philogb/899731 to your computer and use it in GitHub Desktop.
Save philogb/899731 to your computer and use it in GitHub Desktop.
Ext.define('mynamespace.MySeries', {
alias: 'series.myseries',
extend: 'Ext.chart.series.Area',
type: 'myseries'
});
var mySeriesInstance = Ext.createByAlias('series.myseries', {
axis: 'left',
xField: 'name',
yField: ['data1', 'data2', 'data3'],
style: {
opacity: 0.93
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment