Origin Ver.8G and Service Release v8.0951 Operating System: XP
Hello everybody,
I am trying to write a program for graphing some data. The problem is that some of the data in the column I want to plot is useless. Therefor I want to mask it.
The display of Masked datapoints is handled by the @MP system variable. When set to 0, masked points will display in the current mask color. When set to 1, masked points will not display in a graph. (They do still display in a worksheet.)
In Origin C, you can use the LT_Set_Var function to manipulate @MP:
LT_Set_Var("@MP", 0); // Display masked points in graph LT_Set_Var("@MP", 1); // Hide masked points in graph