Ich war auf der Suche nach eine Möglichkeit online ansprechende Diagamme zu erstellen.
Neben etlichen kommerziellen Lösungen habe ich bei http://intex.ath.cx/TimeDataPlot.aspx ein kostenloses Control gefunden. Damit lässt sich z.B. folgende Grafik erstellen:

Der Quellcode hierzu ist einfach:
Control einbinden:
<%@ Register TagPrefix="intex" TagName="TimeDataPlot" Src="TimeDataPlot.ascx" %>
Die Daten weren als DataSet übergeben:
myDataSet.Tables.Add(myDataTable);
DataView myDataView = myDataSet.Tables[0].DefaultView;
ExamplePlot.PlotTitle = " Beispiel-Grafik";
ExamplePlot.ImageAlt = "Plot Example";
ExamplePlot.DataSource = myDataView;
ExamplePlot.TimeColumnName = "time";
ExamplePlot.ValueColumnName = "value";
ExamplePlot.PlotPaddingLeft = 60;
ExamplePlot.DataBind();
ExamplePlot ist die ID des neuen Controls:
<head>
<title>TimeDataPlot Example</title>
</head>
<body>
<intex:TimeDataPlot id="ExamplePlot" runat="server" />
</body>