Back to Devexpress

GanttView.TimescaleRulerStyle Property

wpf-devexpress-dot-xpf-dot-gantt-dot-ganttview-a3d03628.md

latest2.3 KB
Original Source

GanttView.TimescaleRulerStyle Property

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

Namespace : DevExpress.Xpf.Gantt

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

NuGet Package : DevExpress.Wpf.Gantt

Declaration

csharp
public Style TimescaleRulerStyle { get; set; }
vb
Public Property TimescaleRulerStyle As Style

Property Value

TypeDescription
Style

The style applied to timescale rulers.

|

Remarks

Target Type: TimescaleRulerControl

Example

xaml
<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.TimescaleRulerStyle>
                    <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.TimescaleRulerStyle>
            </dxgn:GanttView>
        </dxgn:GanttControl.View>
    </dxgn:GanttControl>
</Window>

See Also

GanttView Class

GanttView Members

DevExpress.Xpf.Gantt Namespace