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
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,12 @@
1
-
# Getting started with the Syncfusion Grid component in the Streamlit Application
1
+
# Getting Started with the Syncfusion Grid component in the Streamlit Application
2
2
3
3
This article provides a step-by-step guide for setting up a [Streamlit](https://streamlit.io/) application with a Python environment and integrating the Syncfusion Grid components.
4
4
5
5
`Streamlit` is a free and open-source framework that enables quick development and sharing of visually appealing web applications for machine learning and data science.
6
6
7
-
## Setting up the Streamlit Application
7
+
## Setting up the Streamlit application
8
8
9
-
To begin working with the Streamlit framework, it is recommended to create a Python environment using [venv](https://docs.python.org/3/library/venv.html). Follow the steps below to create a new Python environment
9
+
To begin working with the Streamlit framework, it is recommended to create a Python environment using [venv](https://docs.python.org/3/library/venv.html). Refer to the below command to create a new Python environment:
10
10
11
11
```bash
12
12
python -m venv my-app
@@ -19,7 +19,7 @@ cd my-app
19
19
pip install streamlit
20
20
```
21
21
22
-
Now that **my-app** is ready to run with default settings, let's add Syncfusion Grid components to the application.
22
+
Now that **my-app** is ready to run with default settings, let's add Syncfusion Grid component to the application.
23
23
24
24
## Add the Syncfusion Grid package
25
25
@@ -39,7 +39,7 @@ Follow the below steps to add the Syncfusion Grid component to the Streamlit app
39
39
from ej2_streamlit_grids import GridComponent, GridProps
40
40
```
41
41
42
-
2\. Create a `CSV` file named **dataset.csv** and populate it with data in the following format
42
+
2\. Create a `CSV` file named **dataset.csv** and populate it with data in the following format:
You can import themes for the Syncfusion Streamlit component, such as using CSS or SASS styles from the CDN. Refer to the [themes topic](https://ej2.syncfusion.com/react/documentation/appearance/theme/) to learn more about built-in themes.
63
+
You can import themes for the Syncfusion Streamlit componentfrom the CDN. Refer to the [themes topic](https://ej2.syncfusion.com/react/documentation/appearance/theme/) to learn more about built-in themes. The `Material` theme is the default theme for the Streamlit Grid component.
64
64
65
-
In this article, the `Fluent` theme is applied using `theme` property, which are available in CDN. The necessary `Fluent` CSS styles for the Grid component were passed into the `theme` property, which is referenced using the code snippet below.
65
+
You can change the default theme with any of the available [built-in themes](https://ej2.syncfusion.com/react/documentation/appearance/theme/). In this article, the `Fluent` theme is applied using `theme` property, which are available in CDN. The necessary `Fluent` CSS styles for the Grid component were passed into the `theme` property, which is referenced using the code snippet below.
0 commit comments