![]() | Type | Description | ||
| Color | A Color expression that indicates the background color for the chart's header. |
The following VB sample changes the chart's header foreground color:
With Gantt1.Chart
.ForeColorLevelHeader = RGB(&H80, &H80, &H80)
End With
The following C++ sample changes the chart's header foreground color:
m_gantt.GetChart().SetForeColorLevelHeader( RGB(0x80,0x80,0x80) );
The following VB.NET sample changes the chart's header foreground color:
With AxGantt1.Chart
.ForeColorLevelHeader = ToUInt32(Color.FromArgb(&H80, &H80, &H80))
End Withwhere the ToUInt32 function converts a Color expression to an OLE_COLOR type:
Shared Function ToUInt32(ByVal c As Color) As UInt32
Dim i As Long
i = c.R
i = i + 256 * c.G
i = i + 256 * 256 * c.B
ToUInt32 = Convert.ToUInt32(i)
End FunctionThe following C# sample changes the chart's header foreground color:
axGantt1.Chart.ForeColorLevelHeader = ToUInt32(Color.FromArgb(0x80, 0x80, 0x80));
where the ToUInt32 function converts a Color expression to an OLE_COLOR type:
private UInt32 ToUInt32(Color c)
{
long i;
i = c.R;
i = i + 256 * c.G;
i = i + 256 * 256 * c.B;
return Convert.ToUInt32(i);
}The following VFP sample changes the chart's header foreground color:
With thisform.Gantt1.Chart
.ForeColorLevelHeader = RGB(128, 128, 128)
EndWith