score:1
Accepted answer
According to the comments - there is a final solution for this issue:
To remove one column:
H.addEvent(H.Chart, 'exportData', function(e) {
e.dataRows.forEach(function(el) {
el.splice(1, 1);
});
});
To edit table headers:
csv: {
columnHeaderFormatter: function(item, key) {
if (item.isXAxis) {
return 'Category'
} else {
return item.name
}
}
}
Demo: https://jsfiddle.net/BlackLabel/5zthymxg/
API: https://api.highcharts.com/highcharts/exporting.csv.columnHeaderFormatter
Source: stackoverflow.com
Related Query
- Highcharts remove column defined by keys from export to CSV
- Highcharts Column chart with drilldown, remove hyperlink like formatting from x-axis labels
- Highcharts - how to remove "Open in Highcharts Cloud" from the export menu
- export csv from highcharts
- Remove gap in Highcharts column chart from null value from JSON file in React
- Add Source to Highcharts Export CSV
- Highcharts SVG Export from Python Server Side Code
- Highcharts : remove custom legend tooltip from export
- How to show an additional column from CSV file as a tooltip in Highcharts
- Export data from highcharts in csv file with dates in milliseconds
- remove item from my export list highcharts
- How to dynamically remove the whole Column from a single series HighCharts column graph?
- Export multiple series from highcharts into CSV
- Export Highcharts code from jsfiddle
- How to remove button from Highcharts
- Proper way to remove all series data from a highcharts chart?
- How can I remove the white border from HighCharts pie chart?
- Highcharts how to remove headers from tooltip
- How do I get remove of 'data table' option from High chart export
- Highcharts - How can I remove starting and ending padding from area chart
- How do I remove the color swatch from my HighCharts legend without affecting the column?
- Remove UTC date from Highcharts tooltip
- Using PhantomJS to create HighCharts grahps server side for use in PDF creation (PHP) - results in exit code 11 from PHPs exec();
- How to export CSV and XLS with external button in Highcharts
- HighCharts : How to add or remove "chart context menu" from chart container?
- Issues using highcharts node export server from ClojureScript - "0x03 error when performing chart generation"
- Highcharts - remove points from series
- Highcharts - Remove first marker from Area chart in every series
- load data in highcharts from 2 different csv files
- Can't get csv from Highcharts
More Query from same tag
- Highcharts - how to get consistent mouseover and mouseout events for columns?
- On Export The Updated yAxis Title Is Lost
- Vue js Highmaps - How to load map?
- How to color point in HighCharts
- Remove Default Title from Chart (HighChart)
- Highcharts map: detect zoom or pan
- Highcharts Gantt Setting Dependency Type
- What do the totals do in a highcharts rose chart?
- HighCharts - Enable the markers for the series which has only single data point?
- Highcharts bubbles incorrect initial size, changes on resize
- How to set category type with Highcharts and chartkick?
- Highcharts: Change the Legend TItle on drilldown
- xAxis tickInterval throwing error in fullscreen
- How do I add a series to a column chart at a specific index
- Highcharts with multiple series from JSON
- Highcharts - advanced tooltip functionality needed
- Multiline Highchart based on Dates
- Change size of legend symbol
- Highcharts angular cannot read property 'series' of undefined
- How To Show All Data Labels For Datetime Axis In Highcharts
- Highcharts - Highlight / Shade date range
- jsPDF not rendering html element with -v 1.2.61(IE)/ giving 110 error in adobe viewer with -v 1.3.2
- Set line to 0 if no measurements between dates in highchart
- Dynamic Vaadin chart
- highstock shows wrong dates in selectorRange buttons
- How to set xaxis label according my json result data?
- How to have shadow enabled in hover and select of highmap?
- Getting Custom GeoJSON File To Work In HighMaps
- how to make custom directive or pass variable in directive in angular js
- Highcharts: is it possible to set up top border radius for the columns in Column chart?