Example #1
0
 protected void Page_Load(object sender, EventArgs e)
 {
     Response.Clear();
     Response.ContentType = "image/png";
     byte[] outbyte = GanttManager.RenderLegendItem(Server.MapPath(@"~/styles/IbnFramework/gantt.xml"), (GanttItem)Enum.Parse(typeof(GanttItem), _ganttItem), _completed);
     Response.OutputStream.Write(outbyte, 0, outbyte.Length);
     Response.End();
 }