RealGrid2 Guide
Export to Excel 🆕
Export shape to Excel

Shape Excel Download

Output barRenderer and ActualTargetBullet Renderer when downloading to Excel.

exportShape setting

If exportOptions.exportShape is true, barRenderer and ActualTargetBullet Renderer can be exported to Excel as shapes.

//export
gridView.exportGrid({
    type: "excel",
    target: "local",
    fileName: "gridExportSample.xlsx", 
    exportShape: true,
    applyDynamicStyles: true,
    done: function () {  
        alert("done excel export")
    }
});