02-13-2009 02:40 PM
02-16-2009 03:30 PM
Hi Kid Lu,
Here is a great document for how to get access to the color markers used on an intensity graph: http://digital.ni.com/public.nsf/allkb/1ADFF221E27F5B5886256E6F007C7B58?OpenDocument
You can either right click the # on the right side of the intensity graph and go to marker color to see the exact RGB values, or use a Zscale.MarkerVal[] property node to read from the intensity graph its current color settings pragmatically.
02-16-2009 11:30 PM
Much appreciated! I figured it out eventually, but I had to do some reading as I didn't know the first thing about anything. Anyways, I finally figured out that the shading of the z scale was determined by a color table, which was actually a 1d array of colors. I probably didn't do it the smartest way, but I ended up using division and modulo arithmetic to get at the individual RGB values of each color and put that data in a 2d array which I then wrote into a CSV file.