Hello,
I'm trying to add a bar chart into grid column for all rows
I got this grid
var grid = new ej.grids.Grid({
editSettings: { allowEditing: true, allowAdding: true, allowDeleting: true, mode: 'Dialog', showDeleteConfirmDialog: true },
toolbar: ['Add', 'Edit', 'Delete'],
columns: [
{ field: 'Id', headerText: 'Id', width: 80, visible: false, isPrimaryKey: true },
{ field: 'Name', headerText: 'Item', width: 120, validationRules: { required: true } },
{ field: 'MinValue', headerText: 'Min Value, width: 120 },
{ field: 'MaxValue', headerText: 'Max Value', width: 120 }
]
});
grid.appendTo('#grid');
I need to draw [Name] in column_1 and [Bar Chart] in column_2 with MinValue and MaxValue, something like this

It does not need to be exactly the same as the image, but as similar as possible, im using ES5 btw