09-28-2006 02:23 PM
09-29-2006 09:57 AM
09-29-2006 10:42 AM
09-29-2006 01:04 PM
Here is my code behind.
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
// I don't need to plot every time because the data is stored in the Session State
// between postbacks by default. See XYPlot.DataStateManagement property.
Graph.PlotY(new double[] { 0, 1, 2, 3, 4, 5 });
}
}
To zoom, left click the mouse and drag in the graph. To undo, Shift-LeftClick
Brock
10-02-2006 01:28 PM
10-02-2006 02:29 PM
10-02-2006 03:54 PM
10-02-2006 05:03 PM
10-05-2006 01:45 PM
10-05-2006 04:07 PM