I have a question about highchart exporting. I need to use highchart own export and I wonder that I use another data series for exporting. For example;
series: [{
type: 'pie',
name: '',
data: [<?=substr($data2,0,-1)?>],
data: [<?=iconv("UTF-8","ISO-8859-9",substr($data2,0,-1))?>]
}
I want to use first data
for view second data
for export. How can I do that ?