John,
> I looked at the API for FlatField and Set looking for a method that
> would allow you to set data, new limits and new numbers of points on an
> axes but couldn't find anything. Is there any such capability like this
> so I don't have to create so many new Objects?
In order to ensure Thread-safeness, Data objects are immutable
except for changing range values in Fields, via the setSample()
and setSamples() methods of Field. In particular, you cannot
change the number samples in a Field. For that, you have to
replace it with a new Field and pass that to the setData()
method of a DataReference.
Good luck,
Bill