dhtmlxGrid

how to drill down from one page to another page in dhtmlx.i want to move from dhtmlxChart to dhtmlxGrid.if user clicks any bar in the chart then it has to display all the particular details in dhtmlxGrid.how to do that.anyone help me.

You may set onItemClick event for Chart and execute the necessary functionality:

barChart.attachEvent(“onItemClick”,function(barId){
/your code here/
});