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")
}
});