From a676774183935866c5a4e2042c7e84b206469d2e Mon Sep 17 00:00:00 2001 From: elenapeskova Date: Mon, 10 Mar 2025 17:14:01 +0400 Subject: [PATCH] update readme --- Readme.md | 23 ++++++++--------------- 1 file changed, 8 insertions(+), 15 deletions(-) diff --git a/Readme.md b/Readme.md index afface3..5136e32 100644 --- a/Readme.md +++ b/Readme.md @@ -1,23 +1,16 @@ - -![](https://img.shields.io/endpoint?url=https://codecentral.devexpress.com/api/v1/VersionRange/128573482/15.1.3%2B) -[![](https://img.shields.io/badge/Open_in_DevExpress_Support_Center-FF7200?style=flat-square&logo=DevExpress&logoColor=white)](https://supportcenter.devexpress.com/ticket/details/E1287) -[![](https://img.shields.io/badge/📖_How_to_use_DevExpress_Examples-e9f6fc?style=flat-square)](https://docs.devexpress.com/GeneralInformation/403183) -[![](https://img.shields.io/badge/💬_Leave_Feedback-feecdd?style=flat-square)](#does-this-example-address-your-development-requirementsobjectives) - - -*Files to look at*: +# Chart for ASP.NET Web Forms - Emulate Gantt Functionality -* [GanttData.cs](./CS/WebSite/App_Code/GanttData.cs) (VB: [GanttData.vb](./VB/WebSite/App_Code/GanttData.vb)) -* [Default.aspx](./CS/WebSite/Default.aspx) (VB: [Default.aspx](./VB/WebSite/Default.aspx)) -* [Default.aspx.cs](./CS/WebSite/Default.aspx.cs) (VB: [Default.aspx.vb](./VB/WebSite/Default.aspx.vb)) - -# How to create a Gantt Chart in the ASP.NET application +This example demonstrates how to create a WebChartControl and bind it to data which represents a multi-task process. +The WebChartControl contains two series: **Planned** and **Actual**. The first series is bound to data. For the second series, the component uses the [Custom Summary Function](http://documentation.devexpress.com/#XtraCharts/CustomDocument4948) to calculate data based on the complete percentage data field values. -

This example demonstrates how to create a WebChartControl and bind it to data which represents a multi-task process. There are two series in the WebChartControl - "Planned" and "Actual". The first series is bound to data. The second series calculates via the Custom Summary Function based on the complete percentage data field values. In addition, the WebChartControl.CustomDrawSeriesPoint event is handled in order to customize the text of the series bars labels.

+Additionally, the component raises the [WebChartControl.CustomDrawSeriesPoint](https://docs.devexpress.com/AspNet/DevExpress.XtraCharts.Web.WebChartControl.CustomDrawSeriesPoint) event to customize the text of bar labels. -
+## Files to Look At: +* [GanttData.cs](./CS/WebSite/App_Code/GanttData.cs) (VB: [GanttData.vb](./VB/WebSite/App_Code/GanttData.vb)) +* [Default.aspx](./CS/WebSite/Default.aspx) (VB: [Default.aspx](./VB/WebSite/Default.aspx)) +* [Default.aspx.cs](./CS/WebSite/Default.aspx.cs) (VB: [Default.aspx.vb](./VB/WebSite/Default.aspx.vb)) ## Does this example address your development requirements/objectives?