Skip to main content

FunnelSeriesView.Title Property

Specifies title content for the funnel series.

Namespace: DevExpress.WinUI.Charts

Assembly: DevExpress.WinUI.Charts.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

[DP(null, Handler = "UpdateTitle")]
public object Title { get; set; }

Property Value

Type Description
Object

Title content.

Remarks

Use the FunnelSeriesView.ShowTitle property to control title visibility. To customize title appearance, specify the FunnelSeriesView.TitleContentTemplate property.

Example

The following example adds a title for a Funnel series, and specifies its content, color, margin, and font size:

A funnel with a customized title

<Charts:FunnelSeries.View>
    <Charts:FunnelSeriesView ShowTitle="True"
                             Title="Website Visitors"
                             TitlePosition="Top">
        <Charts:FunnelSeriesView.TitleContentTemplate>
            <DataTemplate>
                <TextBlock Text="{Binding}" 
                           Foreground="Gray" 
                           FontSize="20" 
                           Margin="0,0,0,20"/>
            </DataTemplate>
        </Charts:FunnelSeriesView.TitleContentTemplate>
    </Charts:FunnelSeriesView>
</Charts:FunnelSeries.View>
See Also