Skip to content

Commit

Permalink
Performance Summary cell style improvement
Browse files Browse the repository at this point in the history
Change cell style for performance counters added to performance summary.  Large numbers are easier to read with comma separators.  #169
  • Loading branch information
DavidWiseman committed May 16, 2022
1 parent 4c89cf6 commit e0be6e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DBADashGUI/Performance/PerformanceSummary.cs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ private void addPerformanceCounterColsToGrid()
pcColNames.Add(name);
if (!dgv.Columns.Contains(name))
{
dgv.Columns.Add(new DataGridViewTextBoxColumn() { Name = name, DataPropertyName = name, HeaderText = agg + " " + ctr.ToString().Replace("\\", " \\ "), Tag = "PC", Width = 70 });
dgv.Columns.Add(new DataGridViewTextBoxColumn() { Name = name, DataPropertyName = name, HeaderText = agg + " " + ctr.ToString().Replace("\\", " \\ "), Tag = "PC", Width = 70, DefaultCellStyle = Common.DataGridViewNumericCellStyle });
}
}
}
Expand Down

0 comments on commit e0be6e1

Please sign in to comment.