.NET
chart.txt
Associated article: Charting: Fast and Efficient
Tags: Web Development .NET Design
Published source code accompanying the article by Grady Werner in which he shows how to keep his ASP.NET 1.1 and 2.0 applications at the cutting edge, he took a second look at the charting components his company was using.
Charting: Fast and Efficient
by Grady Werner
Listing One
public string GenerateFunnelChart()
{
Size imageDimensions = new Size(640, 480);
string filename = Guid.NewGuid().ToString("n") + ".jpg";
string relativeFilename = "~/App_Data/Temp/" + filename;
string physicalFilename = Server.MapPath(relativeFilename);
...


