If update the line plot in ILPanel1 from the other function and the x & y-axis display range becomes too small, how can scale the x and y-axis at the other ILPanel1? For example, the following code:
private void Button1_Click(object sender, EventArgs e)
{
ILPanel1.GetCurrentScene().First<ILLinePlot>().Update(arrayData);
ILPanel1.Scene.Configure();
ILPanel1.Refresh();
}
I realize you can move your mouse to the area of ILPanel1 and scroll it with you mouse to zoom-in and out, but anyone can tell me how to do that in the code level?