You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-7Lines changed: 13 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,15 +6,15 @@ The `Streamlit` is a free and open-source framework that enables quick developme
6
6
7
7
## Set up the Streamlit project environment
8
8
9
-
A recommended approach for beginning with Streamlit framework is to create Python environment with [venv](https://docs.python.org/3/library/venv.html). To create a new Python environment, use the following command.
9
+
A recommended approach for beginning with Streamlit framework is to create a Python environment with [venv](https://docs.python.org/3/library/venv.html). To create a new Python environment, use the following command.
10
10
11
11
```bash
12
12
python -m venv my-project
13
13
```
14
14
15
-
Using the above command will create a Python virtual evnironment.
15
+
Using the above command will create a Python virtual environment.
16
16
17
-
Upon completing the aforementioned step to create the `my-project`, run the following command to install Streamlit:
17
+
Upon completing the aforementioned step to create `my-project`, run the following command to install Streamlit:
18
18
19
19
```bash
20
20
cd my-project
@@ -25,17 +25,17 @@ Now that `my-project` is ready to run with default settings, let's add Syncfusio
25
25
26
26
## Add Syncfusion Grid package
27
27
28
-
Syncfusion Grid component package is available at [pypi.org](https://pypi.org/project/ej2-streamlit-grids/). To use Syncfusion Grid component in the project, install the corresponding pip package.
28
+
Syncfusion Grid component package is available at [pypi.org](https://pypi.org/project/ej2-streamlit-grids/). To use the Syncfusion Grid component in the project, install the corresponding pip package.
29
29
30
30
```sh
31
31
pip install ej2-streamlit-grids
32
32
```
33
33
34
-
## Add Syncfusion Grid package
34
+
## Add Syncfusion Grid component
35
35
36
-
Follow the below steps to add the Syncfusion Grid component to Streamlit Python project:
36
+
Follow the below steps to add the Syncfusion Grid component to the Streamlit Python project:
37
37
38
-
1. First, create a Python file named `demo.py` and import the Grid component in the **demo.py** file.
38
+
1. First, create a Python file named `demo.py` and import the Grid component into the **demo.py** file.
39
39
40
40
```py
41
41
from ej2_streamlit_grids import GridComponent, GridProps
@@ -81,4 +81,10 @@ streamlit run demo.py
81
81
82
82
The output will appear as follows:
83
83
84
+

85
+
86
+
## Grid features demo
87
+
88
+
The Grid component is rendered along with some extra features in the **demo.py** file located in the `demos` folder. The resulting output with these features will be displayed as depicted below:
0 commit comments