Skip to main content
All docs
V25.1
  • GanttProgressBarColumn Class

    A column that displays progress.

    Namespace: DevExpress.Web.ASPxGantt

    Assembly: DevExpress.Web.ASPxGantt.v25.1.dll

    NuGet Package: DevExpress.Web

    Declaration

    public class GanttProgressBarColumn :
        GanttDataColumn

    Remarks

    Create a GanttProgressBarColumn object and add it to the Columns collection to add a column that displays progress.

    Use the PropertiesProgressBar property to customize the column editor’s appearance and behavior settings.

    <dx:ASPxGantt ID="Gantt" runat="server"...>
        ...
        <SettingsTasksList >
            <Columns>
                <dx:GanttProgressBarColumn FieldName="Progress">
                    <PropertiesProgressBar>
                        ...
                    </PropertiesProgressBar>
                </dx:GanttProgressBarColumn>
            </Columns>
        </SettingsTasksList>
    </dx:ASPxGantt>
    

    Examples

    Online Demos

    See Also