25.1.42 • Published 1 day ago

@syncfusion/ej2-vue-spreadsheet v25.1.42

Weekly downloads
273
License
SEE LICENSE IN li...
Repository
github
Last release
1 day ago

Vue Spreadsheet Component

The Vue Spreadsheet is an user interactive component to organize and analyze data in tabular format with configuration options for customization. It will load data by importing an Excel/CSV file or from local and remote data sources such as JSON, RESTful services, OData services, and more. The populated data can be exported as Excel with xlsx, xls, CSV and PDF formats.

Setup

Create a Vue Application

You can use Vue CLI to setup your Vue 2 applications. To install Vue CLI, use the following command.

npm install -g @vue/cli
vue create quickstart
cd quickstart
npm run serve

Initiating a new project prompts us to choose the type of project to be used for the current application. Select the option Default ([Vue 2] babel, eslint) from the menu.

Add Syncfusion Spreadsheet package

All Syncfusion Vue packages are published in npmjs.com registry. To install Vue Spreadsheet package, use the following command.

npm install @syncfusion/ej2-vue-spreadsheet --save

Register Spreadsheet Component

You can register the Spreadsheet component in your application by using the Vue.use(). Refer to the code example given below.

import { SpreadsheetPlugin } from "@syncfusion/ej2-vue-spreadsheet";

Vue.use(SpreadsheetPlugin);

Registering SpreadsheetPlugin in Vue, will register the Spreadsheet component along with its required child directives globally.

Add CSS references for Spreadsheet

Add CSS references needed for Spreadsheet in style section of the App.vue file from ../node_modules/@syncfusion package folder.

<style>
  @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-vue-spreadsheet/styles/material.css';
</style>

Add Spreadsheet Component

Add the Vue Spreadsheet by using ejs-spreadsheet selector in template section of the App.vue file.

<template>
    <ejs-spreadsheet>
        <e-sheets>
            <e-sheet>
                <e-ranges><e-range :dataSource="data"></e-range></e-ranges>
            </e-sheet>
        </e-sheets>
    </ejs-spreadsheet>
</template>

<script>
import Vue from "vue";
import { SpreadsheetPlugin } from "@syncfusion/ej2-vue-spreadsheet";
Vue.use(SpreadsheetPlugin);
export default {
   data: () => {
    return {
      data:  [
        { OrderID: 10248, CustomerID: 'VINET', EmployeeID: 5, ShipCity: 'Reims' },
        { OrderID: 10249, CustomerID: 'TOMSP', EmployeeID: 6, ShipCity: 'Münster' },
        { OrderID: 10250, CustomerID: 'HANAR', EmployeeID: 4, ShipCity: 'Lyon' }
      ]
    }
  }
}
</script>
<style>
  @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-vue-spreadsheet/styles/material.css';
</style>

Refer the Getting Started with Vue3 topic for using Syncfusion Vue components in Vue 3 applications.

Supported frameworks

Spreadsheet component is also offered in the following list of frameworks.

     JavaScript           Angular             React           ASP.NET Core    ASP.NET MVC  

Key features

  • Data sources: Bind the Spreadsheet component with an array of objects or data from a web service using DataManager.
  • Virtualization: Provides the option to load large amount of data without performance degradation.
  • Selection: Provides the option to select a cell or range of cells.
  • Editing: Provides the option to dynamically edit a cell.
  • Formulas: Provides built-in calculation library with pre-defined formulas and named range support.
  • Clipboard: Provides the option to perform clipboard operations.
  • Cell formatting: Provides the option to customize the appearance of cells.
  • Number formatting: Provides the option to format the cell value.
  • Open: Provides the option to open Excel and CSV files in Spreadsheet.
  • Save: Provides the option to save Spreadsheet data as Excel, CSV, and PDF documents.
  • Sorting: Helps you to arrange the data to particular order in a selected range of cells.
  • Filtering: Helps you to view specific rows in the Spreadsheet by hiding the other rows.
  • Undo Redo: Provides the option to perform undo redo operations in Spreadsheet.
  • Collaborative editing: Provides the option for real time changes across multiple users in the Spreadsheet.
  • Hyperlink: Provides the option to navigate to web link or cell reference within the sheet or to other sheet in Spreadsheet.
  • Resize: Allows you to change the row height and column width. Auto fit the rows and columns based on its content.
  • Wrap text: Provides the option to display the large content as multiple lines in a single cell.
  • Data validation: Provides the option to validate edited values based on data validation rules defined for a cell or range of cells.
  • Find and replace: Provides the option to find the data and replace it across all sheets in Spreadsheet.
  • Protect sheet: Provides the option to restrict user actions like cell editing, row and column insertion, deletion, and resizing.
  • Borders: Provides the option to customize cell gridlines such as color and its style for enhanced UI.
  • Show/hide: Provides the option to show/hide rows, columns and sheets.
  • Insert/delete: Provides the option to insert/delete rows, columns and sheets.
  • Merge cells: Provides the option to combine two or more cells located in the same row or column into a single cell.
  • Conditional formatting: Provides the option to format a cell or range of cells based on conditions applied.
  • Autofill: Provides the option to fill or copy a series or pattern of values and formats into adjacent cells in any direction.
  • Clear: Provides the option to clear the content, formats, and hyperlinks applied to a cell or range of cells in a Spreadsheet.
  • Aggregates: Provides the option to check the sum, average, count, and more for the selected cells or range in the sheet.
  • Picture: Allows you to view, insert, and modify a picture in a Spreadsheet with customizing options.
  • Chart: Transforms your Spreadsheet data to an intuitive overview for better understanding and to make smart business decisions.
  • Freeze panes: Allows you to keep the specified rows and columns always visible at the top and left side of the sheet while scrolling through the sheet.
  • Password protection: Allows you to protect the workbook with a password.
  • Multi-line editing: Allows you to insert a line break between paragraphs of the text within a cell in a Spreadsheet.
  • Calculate range selection: Helps you to select a range or multiple ranges when editing a formula in a cell.
  • Right-to-left (RTL): Aligns content in the Spreadsheet component from right to left.
  • Templates: Templates can be used to create custom user experiences in the Spreadsheet.
  • Globalization: Personalize the Spreadsheet component with different languages, as well as culture-specific number, date, and time formatting.
  • Accessibility: Provides with built-in accessibility support which helps to access all the Spreadsheet component features through the keyboard, screen readers, or other assistive technology devices.

Support

Product support is available through the following mediums.

Changelog

Check the changelog here. Get minor improvements and bug fixes every week to stay up to date with frequent updates.

License and copyright

This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's EULA. To acquire a license for 80+ Vue UI components, you can purchase or start a free 30-day trial.

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.

See LICENSE FILE for more info.

© Copyright 2024 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.

25.1.42

1 day ago

25.1.41

8 days ago

25.1.40

15 days ago

25.1.38

29 days ago

25.1.37

1 month ago

25.1.35

2 months ago

24.2.9

2 months ago

24.2.8

2 months ago

24.2.7

2 months ago

24.2.5

3 months ago

24.2.4

3 months ago

24.2.3

3 months ago

24.1.47

3 months ago

24.1.46

4 months ago

24.1.44

4 months ago

24.1.45

4 months ago

24.1.43

4 months ago

24.1.41

5 months ago

23.2.6

5 months ago

23.2.5

5 months ago

23.2.7

5 months ago

22.2.9

9 months ago

22.2.8

9 months ago

22.2.5

9 months ago

22.1.37

10 months ago

22.2.11

8 months ago

22.2.12

8 months ago

22.2.10

8 months ago

23.2.4

5 months ago

23.1.40

7 months ago

23.1.41

7 months ago

23.1.44

6 months ago

23.1.42

6 months ago

23.1.38

7 months ago

23.1.36

8 months ago

23.1.39

7 months ago

22.1.34

10 months ago

21.2.10

11 months ago

21.2.9

11 months ago

21.2.8

11 months ago

21.2.3

12 months ago

21.2.5

12 months ago

20.4.54

1 year ago

20.4.53

1 year ago

21.1.35

1 year ago

21.1.39

1 year ago

21.1.38

1 year ago

21.1.37

1 year ago

21.1.41

1 year ago

20.4.52

1 year ago

20.4.51

1 year ago

20.4.50

1 year ago

20.4.49

1 year ago

20.4.48

1 year ago

20.4.44

1 year ago

20.4.43

1 year ago

20.4.42

1 year ago

20.4.40

1 year ago

20.4.38

1 year ago

20.3.61

1 year ago

20.3.60

1 year ago

20.3.59

1 year ago

20.3.58

1 year ago

20.3.57

1 year ago

20.3.56

1 year ago

20.3.52

2 years ago

20.3.50

2 years ago

20.3.49

2 years ago

20.3.48

2 years ago

20.2.50

2 years ago

20.3.47

2 years ago

20.2.46

2 years ago

20.2.48

2 years ago

20.2.49

2 years ago

20.2.45

2 years ago

20.1.60

2 years ago

20.1.61

2 years ago

20.2.36

2 years ago

20.2.38

2 years ago

20.2.39

2 years ago

20.2.40

2 years ago

20.2.43

2 years ago

20.2.44

2 years ago

20.1.52

2 years ago

20.1.55

2 years ago

20.1.56

2 years ago

20.1.57

2 years ago

20.1.58

2 years ago

20.1.59

2 years ago

20.1.47

2 years ago

20.1.48

2 years ago

20.1.50

2 years ago

20.1.51

2 years ago

19.4.56

2 years ago

19.4.54

2 years ago

19.4.55

2 years ago

19.4.41

2 years ago

19.4.43

2 years ago

19.4.42

2 years ago

19.4.47

2 years ago

19.4.48

2 years ago

19.4.50

2 years ago

19.4.52

2 years ago

19.4.53

2 years ago

19.3.53

2 years ago

19.3.56

2 years ago

19.3.57

2 years ago

19.3.55

2 years ago

19.3.58

2 years ago

19.3.59

2 years ago

19.4.38

2 years ago

19.4.40

2 years ago

19.3.48

2 years ago

19.3.47

3 years ago

19.3.45

3 years ago

19.3.46

3 years ago

19.3.44

3 years ago

19.3.43

3 years ago

19.2.62

3 years ago

19.2.60

3 years ago

19.2.59

3 years ago

19.2.57

3 years ago

19.2.56

3 years ago

19.2.55

3 years ago

19.2.51

3 years ago

19.2.49

3 years ago

19.2.48

3 years ago

19.2.47

3 years ago

19.2.46

3 years ago

19.2.44

3 years ago

19.1.69

3 years ago

19.1.67

3 years ago

19.1.66

3 years ago

19.1.64

3 years ago

19.1.63

3 years ago

19.1.59

3 years ago

19.1.58

3 years ago

19.1.57

3 years ago

19.1.56

3 years ago

19.1.55

3 years ago

19.1.54

3 years ago

18.4.48

3 years ago

18.4.46

3 years ago

18.4.44

3 years ago

18.4.43

3 years ago

18.4.42

3 years ago

18.4.41

3 years ago

18.4.40

3 years ago

18.4.39

3 years ago

18.4.35

3 years ago

18.4.34

3 years ago

18.4.33

3 years ago

18.4.32

3 years ago

18.4.31

3 years ago

18.4.30

3 years ago

18.3.52

3 years ago

18.3.51

3 years ago

18.3.50

3 years ago

18.3.48

3 years ago

18.3.47

3 years ago

18.3.44

4 years ago

18.3.42

4 years ago

18.3.40

4 years ago

18.3.35

4 years ago

18.2.56

4 years ago

18.2.55

4 years ago

18.2.54

4 years ago

18.2.48

4 years ago

18.2.46

4 years ago

18.2.45

4 years ago

18.2.44

4 years ago

18.1.56

4 years ago

18.1.53

4 years ago

18.1.52

4 years ago

18.1.48

4 years ago

18.1.45

4 years ago

18.1.44

4 years ago

18.1.43

4 years ago

18.1.42

4 years ago

18.1.36-beta

4 years ago

17.4.55

4 years ago

17.4.51

4 years ago

17.4.50

4 years ago

17.4.49

4 years ago

17.4.47

4 years ago

17.4.46

4 years ago

17.4.43

4 years ago

17.4.41

4 years ago

17.4.40

4 years ago

17.4.39

4 years ago

17.3.29

4 years ago

17.3.27

4 years ago

17.3.26

4 years ago

17.3.19

5 years ago

17.3.17

5 years ago

17.3.16

5 years ago

17.3.14

5 years ago

17.3.9-beta

5 years ago

17.2.48-beta

5 years ago

17.2.29-beta

5 years ago