UNPKG

extjs-gpl

Version:

GPL licensed version of Sencha Ext JS

18 lines (16 loc) 583 B
/** * The data model for legend items. */ Ext.define('Ext.chart.legend.store.Item', { extend: 'Ext.data.Model', fields: [ 'id', 'name', // The series title. 'mark', // The color of the series. 'disabled', // The state of the series. 'series', // A reference to the series instance. 'index' // A sprite index, e.g. for stacked or pie series. // For such series an individual component of the series // is hidden or shown when the legend item is toggled. ] });