1

Ext.panel.grid 内の数値としてではなく、シリーズ棒グラフとして整数データを描画/視覚化する方法はありますか?

Ext.onReady(function () {
    Ext.define('spaceManager', {
        extend: 'Ext.data.Model',
        fields: [{
            name: 'type'
        }, {
            name: 'totalRecsCnt',
            type: 'int'
        }, {
            name: 'usedRecsCnt',
            type: 'int'
        }, {
            name: 'dSize',
            type: 'int'
        }]
    });

    var grid2 = Ext.create('Ext.grid.Panel', {
        store: getLocalStore(),
        selModel: sm,
        columns: [{
            text: "Type",
            width: 100,
            dataIndex: 'type'
        }, {
            text: "Total Records Count",
            dataIndex: 'totalRecCnt'
        }, {
            text: "Used Records Count",
            dataIndex: 'usedRecCnt'
        }, {
            text: "Disk Size",
            width: 135,
            dataIndex: 'dSize'
        }],
        columnLines: true,
        width: 600,
        height: 300,
        frame: true,
        title: 'Space Manager',
        iconCls: 'icon-grid',
        renderTo: Ext.getBody()
    });
});

私がやろうとしているのは、spaceManager モデルから dSize フィールドのバーを描画することです。dSize 列は、数値のリストとして表示するのではなく、データの棒グラフ シリーズとして描画する必要があります。

4

0 に答える 0