Skip to main content
A newer version of this page is available. .

Adding a Web Chart

  • 2 minutes to read

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:

<system.web>
    <!-- The following lines will be added to the system.web section. -->
    <httpModules>
        <add type="DevExpress.Web.ASPxHttpHandlerModule, DevExpress.Web.v20.2,
        Version=20.2.13.0, Culture=neutral, PublicKeyToken=_"
        name="ASPxHttpHandlerModule" />
    </httpModules>
</system.web>
    <!-- And, the following - to the system.webServer section. -->
<system.webServer>
    <validation validateIntegratedModeConfiguration="false" />
    <modules>
        <add type="DevExpress.Web.ASPxHttpHandlerModule, DevExpress.Web.v20.2,
        Version=20.2.13.0, Culture=neutral, PublicKeyToken=_"
        name="ASPxHttpHandlerModule" />
    </modules>
</system.webServer>

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