Report export shows message "Too much data to export"Issue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em;<span id="CmCaReT"></span> padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } --> When trying to export this report to PDF and then opening the file the following message is shown instead of the data: "Too much data to export" CauseReports are generated by the Highcharts reporting engine (via JSON). When you attempt to save it as a png or jpg, this request goes out to an export server, which takes the input data of the report and creates the png or jpg. However, there is a limit to how much data can be sent to the export server for processing into a png or jpg, and your report's data is exceeding this limit. As such, you are seeing the "too much data" message as expected. ResolutionThe only workaround remains to decrease the number of data points in the report by filtering. Else you could take a print screen or screen capture of your report. Questions to ask when building reports: What is the relevancy of the data you try to show, what will be done with the data, is it human readable? For example when making a report stating incidents created per week, does your weekly report really need to be over the full history or just on the last 3 months?. Also then showing the stack on "other" it may be limiting the visibility on the other bars and add a lot of data you would not foresee need.Related LinksThere is a 64KB limit on the input to a report. This limit is considered per input. So it's probably not triggering on the jpg. We also have a 1MB limit on the generated JSON and that is likely the issue if you thit this issue on the instance. The 64KB limit was set because the Rhino engine doesn't deal with bigger inputs, and 1MB is chosen because AVP export server doesn't accept bigger payloads.