Skip to main content
A newer version of this page is available. .
All docs
V20.2

GanttView.PrintTimescaleRulerStyle Property

Gets or sets the style applied to timescale rulers in the printed GanttControl. This is a dependency property.

Namespace: DevExpress.Xpf.Gantt

Assembly: DevExpress.Xpf.Gantt.v20.2.dll

NuGet Packages: DevExpress.WindowsDesktop.Wpf.Gantt, DevExpress.Wpf.Gantt

Declaration

public Style PrintTimescaleRulerStyle { get; set; }

Property Value

Type Description
Style

The style applied to timescale rulers in the printed GanttControl.

Remarks

Target Type: TimescaleRulerControl

Example

<Window xmlns:dxgn="http://schemas.devexpress.com/winfx/2008/xaml/gantt"
        xmlns:dxgnn="http://schemas.devexpress.com/winfx/2008/xaml/gantt/internal">
    <dxgn:GanttControl ItemsSource="{Binding Tasks}">
    ...
        <dxgn:GanttControl.View>
            <dxgn:GanttView ...>
                <dxgn:GanttView.PrintTimescaleRulerStyle>
                    <Style TargetType="{x:Type dxgnn:TimescaleRulerControl}">
                        <Setter Property="Background" Value="#FFFAB339"/>
                        <Setter Property="Foreground" Value="White"/>
                        <Setter Property="BorderThickness" Value="0"/>
                        <Setter Property="FontStyle" Value="Italic"/>
                        <Setter Property="TickBrush" Value="White"/>
                    </Style>
                </dxgn:GanttView.PrintTimescaleRulerStyle>
            </dxgn:GanttView>
        </dxgn:GanttControl.View>
    </dxgn:GanttControl>
</Window>

Refer to the Print and Export topic for more information on how to customize the printed document.

See Also