Skip to content Skip to sidebar Skip to footer

Pie Chart In Asp Net C# With Database

Pie Chart In Asp Net C# With Database

Creating a pie chart in ASP.NET C# with database is a great way to visually represent data. Pie charts are easy to read and can quickly show the distribution of data. In this article, we will show you how to create a pie chart in ASP.NET C# using a database.

Step 1: Create a Database

Create A Database

The first step is to create a database. You can use Microsoft SQL Server or any other database that you are comfortable with. In this example, we will be using Microsoft SQL Server. Create a new database and name it “PieChart”.

Step 2: Create a Table

Create A Table

Next, create a table in the database. Name the table “Data” and add two columns: “Category” and “Value”. The “Category” column will contain the name of the category and the “Value” column will contain the value of the category.

Step 3: Insert Data into the Table

Insert Data Into The Table

Once you have created the table, insert some data into it. For example, you can add categories such as “Sales”, “Expenses”, “Profit”, and their respective values. This data will be used to create the pie chart.

Step 4: Create a New ASP.NET Web Application

Create A New Asp.Net Web Application

Now, create a new ASP.NET web application. Open Visual Studio and create a new project. Select “ASP.NET Web Application” and name it “PieChart”. Choose “Empty” as the template and click “Create”.

Step 5: Add a Database Connection

Add A Database Connection

The next step is to add a database connection. In Visual Studio, go to “View” -> “Server Explorer”. Right-click on “Data Connections” and select “Add Connection”. Enter the server name, database name, and credentials to connect to the database.

Step 6: Create a New Web Form

Create A New Web Form

Create a new web form by right-clicking on the “PieChart” project and selecting “Add” -> “Web Form”. Name the web form “Default.aspx”.

Step 7: Add a Chart Control

Add A Chart Control

The next step is to add a chart control to the web form. In the toolbox, search for “Chart” and drag the control onto the web form.

Step 8: Add Data to the Chart Control

Add Data To The Chart Control

Now, it’s time to add data to the chart control. Double-click on the chart control to open the “Chart Tasks” pane. Click on “Data” and then click on “Add”. Select the database connection and the “Data” table. Click “Next”.

Step 9: Choose a Data Source

Choose A Data Source

Choose the data source by selecting the “Category” and “Value” columns. Click “Finish” and the data will be added to the chart control.

Step 10: Customize the Chart Control

Customize The Chart Control

You can customize the chart control by changing the title, legend, colors, and other properties. Click on “Chart Areas” and then click on “Chart Area 1”. You can change the title, font, and other properties.

Step 11: Run the Application

Run The Application

Now, run the application by pressing “F5”. You should see the pie chart with the data from the database.

Step 12: Conclusion

In conclusion, creating a pie chart in ASP.NET C# with database is easy and can be done in just a few steps. By following the above steps, you can create a pie chart that will visually represent your data and help you make informed decisions.

Related video of Pie Chart In Asp Net C# With Database