I have a web site where using Shield UI Javascript I am presenting sales data for authorized visitors. I am in need to add some more functionality – when the user clicks on a point a new window should open displaying the company’s website and eventually supplying a parameter. I am using local data binding like this:
var salesdata = new Array();
salesdata[0]=12.7;
salesdata[1]=11.3;
salesdata[2]=15.4;
salesdata[3]=17.2;
salesdata[4]=18.4;
dataSeries: [{
seriesType: 'bar',
collectionAlias: 'chart',
data: salesdata
}]
I tried different approaches, however I don’t seem to have found the correct one. Basically I can’t find where to store the additional information for each point- the url of the corresponding company. So far I have found there is no place in the chart itself. Any ideas?