property Chart.FirstVisibleDate as Variant
Retrieves or sets a value that indicates the first visible date.

TypeDescription
Variant A Date expression that indicates the first visible date in the chart.
The FirstVisibleDate property indicates the first visible date in the chart. The control fires the DateChange event when the first visible date is changed. Use the FormatDate property to format a date to a specified format. Use the NextDate property to retrieve the next or previous date giving a specified time unit. Use the ScrollTo method to ensure that a specified date fits the chart's client area. Use the AddBar property to add new bars to an item. The DateFromPoint property gets the date from the cursor. Use the FirstWeekDay property to specify the first day in the week. Use the Zoom method to scale the chart to a specified interval of dates.

The following VB sample displays the first visible date when the user changes the first visible date:

Private Sub Gantt1_DateChange()
    With Gantt1.Chart
        Debug.Print FormatDateTime(.FirstVisibleDate)
    End With
End Sub

or you can use the FormatDate method like follows:

Private Sub Gantt1_DateChange()
    With Gantt1.Chart
        Debug.Print .FormatDate(.FirstVisibleDate, "<%yyyy%>-<%m%>-<%d%>")
    End With
End Sub

The following C++ sample displays the first visible date when the user changes the first visible date:

#include "Gantt.h"
#include "Chart.h"

static DATE V2D( VARIANT* pvtDate )
{
	COleVariant vtDate;
	vtDate.ChangeType( VT_DATE, pvtDate );
	return V_DATE( &vtDate );
}

void OnDateChangeGantt1() 
{
	if ( m_gantt.GetControlUnknown() )
	{
		CChart chart = m_gantt.GetChart();
		TCHAR szDate[1024] = _T("");
		SYSTEMTIME stDate = {0};
		VariantTimeToSystemTime( V2D( &chart.GetFirstVisibleDate() ), &stDate );
		GetDateFormat( LOCALE_SYSTEM_DEFAULT, LOCALE_USE_CP_ACP, &stDate, NULL, szDate, 1024 );
		OutputDebugString( szDate );
	}
}

The following VB.NET sample displays the first visible date when the user changes the first visible date:

Private Sub AxGantt1_DateChange(ByVal sender As Object, ByVal e As System.EventArgs) Handles AxGantt1.DateChange
    Debug.Write(AxGantt1.Chart.FirstVisibleDate.ToString())
End Sub

The following C# sample displays the first visible date when the user changes the first visible date:

private void axGantt1_DateChange(object sender, EventArgs e)
{
	System.Diagnostics.Debug.Write(axGantt1.Chart.FirstVisibleDate.ToString());
}

The following VFP sample displays the first visible date when the user changes the first visible date:

*** ActiveX Control Event ***

with thisform.Gantt1.Chart
	wait window nowait .FormatDate(.FirstVisibleDate, "<%yyyy%>-<%m%>-<%d%>")
endwith