The Vue Spreadsheet, also known as the Vue Excel viewer, is a feature-rich component for organizing and analyzing data in tabular format like Microsoft Excel for web application. It provides all the common Excel features, including data binding, selection, freeze panes, editing, formatting, protection, resizing, sorting, importing, and exporting Excel documents.
Bind data seamlessly with various local and remote data sources such as JSON, RESTful services, OData services, and WCF services. The control uses a data manager to handle data and supports customizing data requests and processing.
The Vue Spreadsheet (Excel-like grid) component is designed and optimized for loading large amounts of data, scrolling, and more.
Vue Excel Viewer instant loading allows users to load large amounts of data into a worksheet and view it on demand with the help of row and column virtualization.
The Vue Spreadsheet component provides a smooth scrolling experience even with many cells in a view.
A worksheet is a collection of cells arranged in rows and columns that lets you save, format, and work with data. You can create, delete, and rename worksheets, as well as customize the headers, gridlines, and sheet visibility in our Vue Spreadsheet.
A cell range refers to a set of cells in a sheet. Spreadsheet supports several features for working with cell ranges.
You can display a large amount of content in multiple lines within a single cell by using text wrap.
Combine two or more cells from the same row or column into a single cell by merging them.
Restrict the entry of wrong data by users with data validation. You can also highlight the incorrect data.
The autofill option allows users to fill or copy a series or pattern of values and formats into adjacent cells in any direction.
Data editing allows you to add, edit, and remove formulas or values in a cell. Edit the contents of a cell directly in the cell or by typing the formula bar.
The Vue Spreadsheet widget provides interactive support to highlight the cells, rows, columns, and sheets selected. Selection can be done through mouse, touch, or keyboard interaction.
The Vue Spreadsheet library provides a wide range of formulas with cross-sheet references support.
The Vue Spreadsheet with rich UI provides a built-in calculation engine is suitable for most of the calculations. It also provides an option to create and use custom formulas.
Values are automatically recalculated when a dependent cell is edited.
Number formatting is used to change the appearance of numbers in Vue Spreadsheet. It helps display data as currency, percentages, short dates, long dates, time, fractions, and scientific numbers, similar to Excel.
Using cell formatting, users can highlight a particular cell or range of cells from a whole workbook. The component supports various formatting options: font size, font family, font color, fill color, indent, and horizontal and vertical alignments of text.
Conditional formatting can format a cell or range of cells based on the conditions that are applied. This enables you to highlight data based on the appropriate condition.
Load Excel documents initially or open them like an Excel application with data accuracy, styles, and formats. Microsoft Excel (.xlsx), Microsoft Excel 97-2003 (.xls), and comma-delimited values (.csv) file formats can be opened in a Vue Spreadsheet.
Easily save the Spreadsheet component with data accuracy, styles, and formats as an Excel file. The Vue Spreadsheet supports file formats such as Microsoft Excel (.xlsx), Microsoft Excel 97-2003 (.xls), and comma-delimited values (.csv).
The Vue Spreadsheet user interface has been customized and redesigned for great views and usability on small screens.
There is built-in support for hyperlinks and bookmarks. Navigate to web links or cell references within the sheet or other sheets in the workbook.
The image feature allows users to view, insert, and modify a picture in a Vue Spreadsheet with customizing options.
The chart feature transforms the Vue Spreadsheet data into an intuitive overview for better understanding.
The Vue Spreadsheet provides an interactive ribbon that organizes the spreadsheet’s features into a series of tabs. Collapse the ribbon to make more rows visible in the viewport.
Easily collaborate on workbooks. Multiple users can work on a spreadsheet at the same time and view the changes made by others instantly.
Use the clipboard operations, cut, copy, and paste, just like Microsoft Excel. You can paste the values or formulas with or without formatting in a newly selected range.
The context menu improves user interaction with the Vue Spreadsheet using a pop-up menu. It appears when a cell, row header, column header, or sheet tab is right clicked. In addition to built-in default menu items, you can add custom context menu items.
The resize and autofit options help you adjust the row height and column width.
The Vue Spreadsheet provides an option to undo and redo changes made in a workbook. You can customize the limit of undo and redo operations.
You can use Find and Replace option to search for content easily within a worksheet or workbook and then change out the original text for an alternative.
The freeze panes allows users to keep specified rows and columns always visible at the top or left side of the sheet while scrolling through it.
The Vue Excel Spreadsheet ensures that every cell is accessible using a keyboard. Major features like selection, clipboard, and editing can be performed using keyboard commands alone; no mouse interaction is required. This helps in creating highly accessible applications using this component.
The Vue Spreadsheet grid view has complete WAI-ARIA accessibility support. The Vue Spreadsheet with rich UI includes high-contrast visual elements, helping visually impaired people have the best viewing experience. Also, valid UI descriptions are easily accessible through assistive technologies such as screen readers.
Five built-in, SASS-based themes are available: Material, Bootstrap, Fabric (Office 365), Tailwind CSS, and High Contrast. Simplify theme customization either by overriding the existing SASS styling or creating custom themes using the Theme Studio application.
The Vue Spreadsheet enables users from different locales to use it by formatting the dates, currency, and numbering to suit their language preferences. It uses the internalization (i18n) library to handle number formatting.
Right-to-left rendering allows you to display the text and layout of the Spreadsheet from right to left. This improves the user experience and accessibility for RTL languages.
Localize all the strings used in the user interface of the Vue Spreadsheet component. The component uses the localization (l10n) library to localize UI strings.
The Vue Spreadsheet works well with all modern web browsers: Chrome, Firefox, Edge, Safari, and IE11. It supports IE11 with the help of polyfills.
Easily get started with the Vue Spreadsheet using a few simple lines of Vue code example as demonstrated below. Also explore our Vue Spreadsheet Example that shows you how to render and configure a Spreadsheet in Vue.
<template>
<ejs-spreadsheet ref="spreadsheet">
<e-sheets>
<e-sheet>
<e-ranges>
<e-range :dataSource="dataSource"></e-range>
</e-ranges>
<e-columns>
<e-column :width="width1"></e-column>
<e-column :width="width2"></e-column>
</e-columns>
</e-sheet>
</e-sheets></ejs-spreadsheet>
</ template >
< script >
import Vue from "vue";
import { SpreadsheetPlugin
}
from "@syncfusion/ej2-vue-spreadsheet";
import { defaultData }from './data.js';
Vue.use(SpreadsheetPlugin);
export default {
data: () => {
return {
dataSource: defaultData,
}
}
}
</ script >
< style >
@import "../node_modules/@syncfusion/ej2-vue-spreadsheet/styles/material.css";
@import '../node_modules/@syncfusion/ej2-base/styles/material.css';
@import '../node_modules/@syncfusion/ej2-buttons/styles/material.css';
@import '../node_modules/@syncfusion/ej2-dropdowns/styles/material.css';
@import '../node_modules/@syncfusion/ej2-inputs/styles/material.css';
@import '../node_modules/@syncfusion/ej2-navigations/styles/material.css';
@import '../node_modules/@syncfusion/ej2-popups/styles/material.css';
@import '../node_modules/@syncfusion/ej2-splitbuttons/styles/material.css';
@import '../node_modules/@syncfusion/ej2-grids/styles/material.css';
@import "../node_modules/@syncfusion/ej2-spreadsheet/styles/material.css";
</ style >
The Spreadsheet component is also available in React, Angular, and JavaScript frameworks. Check out the different Spreadsheet platforms from the links below,
Developers can customize their UI and control its behaviors according to the end user’s requirement using the control’s rich set of client-side APIs.
You can find our Vue Spreadsheet demo here.
No, this is a commercial product and requires a paid license. However, a free community license is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers.
A good place to start would be our comprehensive getting started documentation.
Greatness—it’s one thing to say you have it, but it means more when others recognize it. Syncfusion is proud to hold the following industry awards.