Hi Gabriel,
Thanks for using Syncfusion products,
We have checked your requirement and we suggest you to set “allowInsert” as false, to prevent adding new sheets and use dragShape client side event then set args.cancel as false to disable chart and image dragging. Please refer the below code examples,
[JS]
$(function () {
$("#Spreadsheet").ejSpreadsheet({
scrollSettings:
{
width: "100%",
height: 470,
isResponsive: true
},
showRibbon: false,
allowFormulaBar: false,
allowEditing: false,
enableContextMenu: false,
allowInsert: false,
..//
dragShape: "onDragShape"
});
});
..//
function onDragShape(args) {
args.cancel = true; // to disable shape(chart, picture) dragging.
}
|
We have demonstrated this in js playground. Please refer the below link for further details,
Regards,
Shanmugaraja K