aspnet-6328-components-chart-control-concepts-adding-a-web-chart.md
This topic explains how to add a chart to your Web application both at design time within Visual Studio and programmatically.
Refer to the following help topic to learn how to add a chart to a Web page at design time within Visual Studio: How to: Add a Chart to a Web Application.
Note that after a chart is first added to your web application, its Web.config file is affected. The following module is added to its XML code:
<!-- The following lines will be added to the system.web section. -->
<httpModules>
<add type="DevExpress.Web.ASPxHttpHandlerModule, DevExpress.Web.v25.2,
Version=25.2.5.0, Culture=neutral, PublicKeyToken=_"
name="ASPxHttpHandlerModule" />
</httpModules>
<!-- And, the following - to the system.webServer section. -->
<validation validateIntegratedModeConfiguration="false" />
<modules>
<add type="DevExpress.Web.ASPxHttpHandlerModule, DevExpress.Web.v25.2,
Version=25.2.5.0, Culture=neutral, PublicKeyToken=_"
name="ASPxHttpHandlerModule" />
</modules>
Refer to the following help topic to learn more about the ASPxHttpHandlerModule : ASPxHttpHandlerModule.
To learn how a chart can be created and added to a Web page programmatically, refer to the following topic: How to: Add a Chart to a Web Page (Runtime Sample).
Alternatively, a Web chart can be created entirely on the client side. Refer to the following help topic to view a tutorial: How to: Add a Chart to an ASPxCallbackPanel during its Callback (Runtime Sample).
See the following tutorials for information on how to bind Web charts to data.
See Also