Skip to content

Commit

Permalink
Histogram and Treemap views now allow you to select the grouping mode…
Browse files Browse the repository at this point in the history
… (traceback/function/module/source file/source folder)
  • Loading branch information
kg committed May 2, 2011
1 parent d1677e8 commit 6d97b71
Show file tree
Hide file tree
Showing 7 changed files with 326 additions and 90 deletions.
2 changes: 1 addition & 1 deletion DeltaHistogram.cs
Expand Up @@ -672,7 +672,7 @@ public class DeltaHistogram : GenericHistogram<DeltaInfo> {
public class GraphHistogram : GenericHistogram<StackGraphNode> {
public GraphHistogram () {
base.GetItemValue = (sgn) => sgn.BytesRequested;
base.GetItemText = (sgn) => sgn.Key.FunctionName;
base.GetItemText = (sgn) => sgn.Key.ToString();
base.GetItemTooltip = (sgn) => {
var sf = CustomTooltip.GetDefaultStringFormat();
Expand Down
136 changes: 111 additions & 25 deletions DiffViewer.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6d97b71

Please sign in to comment.