23 using System.Collections.Generic;
28 namespace Ntp.Analyzer.Render.Host
35 this.graphs =
new List<GraphSetConfiguration>(graphs);
38 private readonly List<GraphSetConfiguration>
graphs;
42 var builder =
new StringBuilder();
44 foreach (var graphSet
in graphs)
46 foreach (var graph
in graphSet.Graphs)
48 builder.Append(
@"<br><img src=""");
49 builder.Append(graph.GetLink(graphSet).ToHtmlString());
50 builder.Append(
@""" alt=""");
51 builder.Append(graph.GetAltName(graphSet));
52 builder.AppendLine(
@"""><br>");
56 return builder.ToString();
readonly List< GraphSetConfiguration > graphs
override string RenderFooter()
DefaultHostGraphRender(Uri webPath, IEnumerable< GraphSetConfiguration > graphs)
override string RenderHead()