The goal is to replace using a simple array of numbers (i.e. dataSet = [1, 7, 5, 6];) with a more complex structure like:
// Data Used for this example...
var dataSet1 = [
{"setName": "Set Label", legendLabel: "Legend String 1", magnitude: 5, link: "
http://www.if4it.com"},
{"setName": "Set Label", legendLabel: "Legend String 4", magnitude: 7, link: "
http://www.yahoo.com"}];
... where we can now bind each "magnitude" to each arc in the pie, associate each label with each arc, and finally associate each link with each arc.
My next steps involve things like specifying links in the data structure and finding ways to bind individual links to each arc in the pie, as well as adding mouseover functionality that does things like highlighting individual arcs.
Thanks again for the help,
Frank