Hi, guys:
I excute the fellowing example code:
file = FILEPATH('convec.dat', $
SUBDIR=['examples', 'data'])
z = READ_BINARY(file,DATA_DIMS=[248,248])
index = [30,60,90,120,150,220,255]
c = CONTOUR(z, /FILL, ASPECT_RATIO=1, $
RGB_TABLE=39, RGB_INDICES=index, C_VALUE=index)
and I want to change the rgb_table and rgb_indices, like
c.rgb_table = 0
c.rgb_indices = index-15
but nothing change in the graphics window, why?
dave
|