Zoom In / Zoom Out

Fully implemented BCGControlBar Pro (MFC)

Fully implemented BCGSuite (MFC)

Not available BCGControlBar for .NET

The Gantt Chart control supports Zoom In / Zoom Out feature.

Zoom In / Zoom Out

Sample code:

void CBCGPGanttDemoView::OnGanttZoomOut() 
{
    CBCGPGanttChart* pChart = GetChart ();

    if (pChart != NULL)
    {
        ASSERT_VALID (pChart);
        pChart->DecreaseScale ();
    }
}