I have an observable array of say 20 objects. Each object has some 30 fields each of which is an observable over a value that is bound to an attribute of an SVG object. So basically these objects represent different shapes in SVG. All attributes are required to be able to change dynamically and all changes have to be reflected in SVG. It doesn't seem a good idea to me to have an observable for each changeable property because it totals to 20 * 30 = 600 observables.
Are there more efficient ways to approach this in terms of having less observables? What are they?