Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1120
Pie chart for 2 columm wintree
posted

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 

  

  • 17605
    posted

    You can get the data and set to DataSource property of the Chart.

    this.ultraChart1.DataSource = subData;

    this.ultraChart1.DataBind();