//选中行字体高亮显示
private void pivotGridControl1_CustomDrawFieldValue(object sender, PivotCustomDrawFieldValueEventArgs e)
{
int index = e.Area == PivotArea.ColumnArea ? pivotGridControl1.Cells.FocusedCell.X : pivotGridControl1.Cells.FocusedCell.Y;
if (e.MinIndex <= index && index <= e.MaxIndex)
{
e.Appearance.Font = new Font(e.Appearance.Font, FontStyle.Bold);
}
else
{
e.Appearance.Font = new Font(e.Appearance.Font, FontStyle.Regular);
}
}