Showing Chart DataTable below Chart

I am generating a presentation with 3 charts. Client would like the datatables below the chart, but I can’t figure out how to do it.


I’ve tried looking through the various available properties and methods on chart.ChartDataTable but nothing in there seems to indicate it turns the table on and off in the export.

Would someone mind helping me display these tables below the charts? Thanks

Hi Brendan,

I like to share that you can show or hide the chart data table. Please try using the following code line in your application to enable the chart data table.

chart.HasDataTable = true;

Many Thanks,

Mudassir,


Thanks for the reply. That worked great!