Skip to main content

WorkdaysOptions.Workdays Property

Specifies which days of the week are the workdays.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v24.2.dll

NuGet Package: DevExpress.Charts

#Declaration

public Weekday Workdays { get; set; }

#Property Value

Type Description
Weekday

A Weekday enumeration value(s), specifying the workdays for the week.

Available values:

Name Description
None

Weekday is not specified.

Sunday

Identifies Sunday.

Monday

Identifies Monday.

Tuesday

Identifies Tuesday.

Wednesday

Identifies Wednesday.

Thursday

Identifies Thursday.

Friday

Identifies Friday.

Saturday

Identifies Saturday.

#Property Paths

You can access this nested property as listed below:

Object Type Path to Workdays
DateTimeScaleOptions
.WorkdaysOptions .Workdays

#Remarks

Apart from specifying the workdays within the week, you can define strict workdays (which have priority over the WorkdaysOptions.Holidays property setting), via the WorkdaysOptions.ExactWorkdays property.

For more information, refer to Data Aggregation.

#Example

This example demonstates how to exclude non-working days (weekdays and holidays) from an axis range, with the DateTimeScaleOptions.WorkdaysOnly and DateTimeScaleOptions.WorkdaysOptions properties.

using System;
using System.Windows.Forms;
using DevExpress.XtraCharts;
// ...
DateTimeScaleOptions dateTimeScaleOptions = ((XYDiagram)chartControl1.Diagram).AxisX.DateTimeScaleOptions;

// Enables workday options.
dateTimeScaleOptions.WorkdaysOnly = true;

// Specifies custom work days.
// In this example, Sunday is a work day and Saturday is a day off.
dateTimeScaleOptions.WorkdaysOptions.Workdays = Weekday.Sunday | Weekday.Monday | Weekday.Tuesday |
    Weekday.Wednesday | Weekday.Thursday | Weekday.Friday;

// Specifies custom holidays.
// In this example, March 8th (Monday) is an additional holiday.
dateTimeScaleOptions.WorkdaysOptions.Holidays.Add(
    new KnownDate("Custom Holiday", new DateTime(2021, 3, 8, 0, 0, 0, 0)));

// Specifies work days, which have priority over specified holidays.
// In this example, March 6th (Saturday) is an additional work day.
dateTimeScaleOptions.WorkdaysOptions.ExactWorkdays.Add(
    new KnownDate("Community Work Day", new DateTime(2021, 3, 6, 0, 0, 0, 0)));

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Workdays 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.

See Also