name | String | Sets the name of the component. |
as-module | Boolean | Specifies whether the initialization script of the component will be rendered as a JavaScript module. |
is-in-client-template | Boolean | When placing a Tag Helper within a Kendo Template, set the type to text/html and add the is-in-client-template="true" attribute. |
active-sheet | String | The name of the currently active sheet. Must exactly match one of the (sheet names)[#configuration-sheets.name]. |
columns | Double | The number of columns in the document. |
column-width | Double | The default column width in pixels. |
header-height | Double | The height of the header row in pixels. |
header-width | Double | The width of the header column in pixels. |
deferred | Boolean | Suppress initialization script rendering. Note that this options should be used in conjunction with DeferredScripts method. |
images | Object | An object containing any images used in the Spreadsheet. The keys should be image ID-s (they are referenced by this ID in (sheets.drawings)[#configuration-sheets.drawings]) and the values should be image URLs.The image URLs can be eitherdata URLs, in which case the images are fully contained by the JSON, or can be external URLs.Note that when external URLs are used, they should reside on the same domain, or the server must be configured with the properCORS headers, for the Spreadsheet to be able to fetch binary image data using a XMLHttpRequest. If it cannot fetch the image, export to Excel or PDF might not work. |
on-change | String | The name of the JavaScript function that will handle the changeFormat event. Triggered when the range format is changed from the UI. Introduced in the 2017 Q1 release. |
on-change-format | String | The name of the JavaScript function that will handle the changeFormat event. Triggered when the range format is changed from the UI. Introduced in the 2017 Q1 release. |
on-changing | String | The name of the JavaScript function that will handle the changing event. Triggered when a value or validation in the Spreadsheet is about to be changed upon user interaction. |
on-copy | String | The name of the JavaScript function that will handle the copy event. Fired when a range of a sheet is about to be copied. |
on-cut | String | The name of the JavaScript function that will handle the cut event. Fired when a range of a sheet is about to be cut. |
on-data-binding | String | The name of the JavaScript function that will handle the dataBinding event. Fired when the data retrieved from a DataSource is about to be bound to a sheet. Available only if DataSource has been defined for at least one sheet. |
on-data-bound | String | The name of the JavaScript function that will handle the dataBound event. Fired when the data from a DataSource is already populated in a sheet. Available only if DataSource has been defined for at least one sheet. |
on-delete-column | String | The name of the JavaScript function that will handle the deleteColumn event. Triggered when a column will be deleted. Introduced in the 2017 Q1 release. |
on-delete-row | String | The name of the JavaScript function that will handle the deleteRow event. Triggered when a row will be deleted. Introduced in the 2017 Q1 release. |
on-excel-export | String | The name of the JavaScript function that will handle the excelExport event. Fires when the user clicks the Export to Excel toolbar button. |
on-excel-import | String | The name of the JavaScript function that will handle the excelImport event. Fired when the user imports a file after selecting it from the window prompt. The event is fired before the file importing has finished. |
on-hide-column | String | The name of the JavaScript function that will handle the hideColumn event. Triggered when a column will be hidden. Introduced in the 2017 Q1 release. |
on-hide-row | String | The name of the JavaScript function that will handle the hideRow event. Triggered when a row will be hidden. Introduced in the 2017 Q1 release. |
on-insert-column | String | The name of the JavaScript function that will handle the insertColumn event. Triggered when a column will be inserted. Introduced in the 2017 Q1 release. |
on-insert-row | String | The name of the JavaScript function that will handle the insertRow event. Triggered when a row will be inserted. Introduced in the 2017 Q1 release. |
on-insert-sheet | String | The name of the JavaScript function that will handle the insertSheet event. Triggered when a sheet is inserted. Introduced in the 2017 Q1 release. |
on-paste | String | The name of the JavaScript function that will handle the paste event. Fired when a data is about to be pasted in a sheet. |
on-pdf-export | String | The name of the JavaScript function that will handle the pdfExport event. Fired when the user initiates the export to PDF. |
on-remove-sheet | String | The name of the JavaScript function that will handle the removeSheet event. Triggered when a sheet will be removed. Introduced in the 2017 Q1 release. |
on-rename-sheet | String | The name of the JavaScript function that will handle the renameSheet event. Triggered when a sheet will be renamed. Introduced in the 2017 Q1 release. |
on-render | String | The name of the JavaScript function that will handle the render event. Triggered after the widget has completed rendering. The event will also fire when a cell is selected or when the Spreadsheet's tools (bold, italic) are used, as the target element is re-generated with new styles (e.g background-color, box-shadow, font-weight, etc.). |
on-select | String | The name of the JavaScript function that will handle the selectSheet event. Triggered when a sheet will be activated. Introduced in the 2017 Q1 release. |
on-select-sheet | String | The name of the JavaScript function that will handle the selectSheet event. Triggered when a sheet will be activated. Introduced in the 2017 Q1 release. |
on-unhide-column | String | The name of the JavaScript function that will handle the unhideColumn event. Triggered when a column will be shown. Introduced in the 2017 Q1 release. |
on-unhide-row | String | The name of the JavaScript function that will handle the unhideRow event. Triggered when a row will be shown. Introduced in the 2017 Q1 release. |
row-height | Double | The default row height in pixels. |
rows | Double | The number of rows in the document. |
script-attributes | IDictionary<String,Object> | Sets the attributes that will be added to the script tag of the component's initialization script. |
sheetsbar | Boolean | A Boolean value which indicates if the sheets-bar will be displayed. |
use-culture-decimals | Boolean | If set to true, the Spreadsheet formula parser will obey the decimal separator of the current culture. If set to false (default), the decimal separator in formulas will always be the dot.This flag has implications on how formulas are entered. When it is set to true, in cultures where the decimal separator is the comma (,), similar to Excel, the following additional changes upon entering a formula will occur: The semicolon will become a function argument separator. For example, =SUM(A1;A2) instead of =SUM(A1,A2). or The backslash will become an element separator in an array formula. For example, ={1\2;3\4} instead of ={1,2;3,4}.. This flag only affects the presentation - the way formulas are entered by the end user or displayed on screen. Serialization to JSON or XLSX as well as the public API functions will continue to use the dot as decimal separator and the comma as an argument separator (canonical form). For example, to apply a formula by using the API, even if useCultureDecimals is in effect, you still need to use the canonical form.To make the API functions obey useCultureDecimals, wrap your code in a call to sheet.withCultureDecimals. Assuming a culture where the comma is used for decimals, compare the previous example with the following one. |