I have a 2 colume wintree, How do I bind the windtree's datatable to chart's data source?e.g. I click on node and I want tio get datatable only contains its child nodes and bind this sub datatable to chart's data source.
Thanks!
Steve
You can get the data and set to DataSource property of the Chart.
this.ultraChart1.DataSource = subData;
this.ultraChart1.DataBind();