Back to Devexpress

DataViewBase.ShowTotalSummary Property

wpf-devexpress-dot-xpf-dot-grid-dot-dataviewbase-48c55eaa.md

latest4.2 KB
Original Source

DataViewBase.ShowTotalSummary Property

Gets or sets whether the Summary Panel is displayed. This is a dependency property.

Namespace : DevExpress.Xpf.Grid

Assembly : DevExpress.Xpf.Grid.v25.2.Core.dll

NuGet Package : DevExpress.Wpf.Grid.Core

Declaration

csharp
[Browsable(false)]
public bool ShowTotalSummary { get; set; }
vb
<Browsable(False)>
Public Property ShowTotalSummary As Boolean

Property Value

TypeDescription
Boolean

true to show the summary panel within a view; otherwise, false.

|

Remarks

Note

This property is obsolete. Use the DataViewBase.TotalSummaryPosition property to show the Summary Panel and specify its position.

Refer to the following help topic for more information: Data Summaries.

The following code snippets (auto-collected from DevExpress Examples) contain references to the ShowTotalSummary property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

wpf-data-grid-process-frequent-data-updates/CS/ChunkAndOptSummariesExample/MainWindow.xaml#L33

xml
<dxg:GridControl.View>
    <dxg:TableView GroupSummaryDisplayMode="AlignByColumns" ShowTotalSummary="True" />
</dxg:GridControl.View>

wpf-data-grid-summarize-empty-cells/CS/CustomSummary_EmptyCells_CodeBehind/MainWindow.xaml#L19

xml
NavigationStyle="Cell"
                   ShowTotalSummary="True" />
</dxg:GridControl.View>

reporting-wpf-printing-library-use-the-composite-link/CS/MainWindow.xaml#L34

xml
<dxg:GridControl.View>
    <dxg:TableView AllowPerPixelScrolling="True" Name="tableView1" ShowTotalSummary="True" />
</dxg:GridControl.View>

wpf-use-devexpress-theme-in-applications/CS/DevExpress.Examples.ThemeSwitcher/MainWindow.xaml#L29

xml
<dxg:GridControl.View>
    <dxg:TableView AllowPerPixelScrolling="True" ShowTotalSummary="True" />
</dxg:GridControl.View>

how-to-create-search-window-with-find-previous-and-find-next-buttons-in-gridcontrol-t127527/CS/DevExpress.Example01/MainWindow.xaml#L25

xml
SearchPanelAllowFilter="False"
                   ShowTotalSummary="True"/>
</dxg:GridControl.View>

See Also

DataViewBase Class

DataViewBase Members

DevExpress.Xpf.Grid Namespace