Hello,
I am using JMP 12. Using the Automation Reference document and the JMPStarter C# sample application, I was able to get a simple C# application working.
I am plotting numeric values (CpD) on Y axis and want to show the values of it on the graph. I can do it in JMP but can't seem to find a way to do it in visual studio c# code. I did try the showpoints method but that doesn't seem to show the points on the graph. Below is what I have now. Any help on this would be appreciated.
ch = doc.CreateChart();
ch.LaunchAddY("CpD", JMP.chartStatConstants.chartStatMin);
ch.LaunchAddX("Current Layer");
ch.ShowPoints(true);
ch.Launch();
Best,
Abdul