You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 15, 2023. It is now read-only.
Hi! @reiniermujica Thanks for reporting this. I have a feeling the issue stems from how the filtering function interacts with certain series types. I'll see if I can figure out a solution outside of providing users an option to disable the filtering function.
Sorry for the delayed reply. I just pushed a new version that automatically disables data row filtering for Pie charts as well as several other updates.
I found a bug in my company software, when the client try to export a PieCharts to XLSX, the export sheet only contains the first row of the data.
The data is in this format:
[
{
"name": "Brands",
"colorByPoint": true,
"data": [
{
"name": "Chrome",
"y": 61.41,
"sliced": true,
"selected": true
},
{
"name": "Internet Explorer",
"y": 11.84
},
{
"name": "Firefox",
"y": 10.85
}
]
I finally found that the problem was in this function: highcharts/highcharts#7913 (comment)
When the data is filtering. I removed the function and the export success.
The text was updated successfully, but these errors were encountered: