Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
PlotLab.Scope
07-30-2012, 02:56 PM
Post: #5
RE: PlotLab.Scope
Ok Dave, I create a new windows C# form. Then i add a scope. I add bellow code In the Form1_Load Method :

double[] XAxis = new double[1000];
double[] YAxis = new double[1000];
for (int i = 0; i < 1000; i++)
{
XAxis[i] = i;
YAxis[i] = i;
}
scope1.Channels[0].Data.SetXYData(XAxis, YAxis);

just this, without anything else. Then i run it. When you zoom in by mouse you can see all features of the scope change, MajorTicks, Number of uints, size of each units, Lable of Ticks.It's confusing. It's not important to show lablel of ticks, i can invisble them. I need to change step but fix major ticks. Sorry i can't explain easier than this.
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
PlotLab.Scope - zahra - 07-28-2012, 07:40 PM
RE: PlotLab.Scope - Dave - 07-28-2012, 11:07 PM
RE: PlotLab.Scope - zahra - 07-29-2012, 10:50 PM
RE: PlotLab.Scope - Dave - 07-29-2012, 11:28 PM
RE: PlotLab.Scope - zahra - 07-30-2012 02:56 PM

Forum Jump:


User(s) browsing this thread: 1 Guest(s)