score:3
Accepted answer
Your ClojureScript code is not equivalent to the example code in the readme. In the example, killPool
is called in the callback function passed into export
. In your version, you call killPool
immediately after calling export so chart generation likely does not have time to finish. I suspect this is causing the error.
The updated ClojureScript would look like this:
(doto Highcharts
(.initPool)
(.export test-chart (fn [err res]
(when err (println "****" err))
(.killPool Highcharts))))
Source: stackoverflow.com
Related Query
- Issues using highcharts node export server from ClojureScript - "0x03 error when performing chart generation"
- Using PhantomJS to create HighCharts grahps server side for use in PDF creation (PHP) - results in exit code 11 from PHPs exec();
- Highcharts SVG Export from Python Server Side Code
- Error with PhantomJS when installing Highcharts export server on Azure VM (Ubuntu 20.04)
- Json to Chart using highchart export server with Node js module its throw error
- Unable to get highcharts image from highcharts export server using rails httparty
- Server side chart .svg export with Highcharts and PhantomJS, error loading data from .csv file
- JavaScript error when using Highcharts
- Multi-Line Title is not working when we export to PNG using CanVG - Highcharts
- highcharts export server js script error codes
- Fetch data from firebase firestore and plot histogram using highcharts when cardview clicked - android
- incorrect highcharts export server js script error codes
- Highcharts Export server - Can't generate image using --options
- some error will be printed in consoled when i export highcharts
- HighCharts title styles i.e textDecoration property not applying when we export the chart using canvg
- Issues Getting Highcharts Export Server Running Under iisnode
- Highcharts Node.js export server : Connection error
- POST parameters for the Highcharts export server causes 407 Proxy Authentication Error
- Is there any way to highlight the node on search in network chart when using highcharts in angular application
- net:ERR_FAILED - My application (Ionic 4 / Angular 7) is giving an error when trying to export a Highcharts
- Highcharts not referenced error when using setOptions
- Highcharts not being drawn in some cases when using data from MySQL (page elements created before database query complete?) PHP / MySQL
- How to add flags to highcharts export server when started as a module
- Highcharts 9.1.1 export from fullscreen with print option- throw error on browser console Uncaught TypeError: a.hasAttribute is not a function
- Highcharts error #17 when adding series to the chart using angular 4
- Error when using Highcharts with Angular 2
- Export Highcharts code from jsfiddle
- Highcharts export : button is missing when website on IIS server
- Export Highcharts to PDF (using javascript and local server - no internet connection)
- Getting error while using highcharts in Angular 7
More Query from same tag
- highchart column comparison chart like xrange
- How do I remove some attributes of an element using selection by querySelectorAll?
- Highchart value series mapping
- Check all charts for data and hide ones that have none
- highcharts hover.state.halo color malfunction?
- Highcharts crosshair label is behind legend
- Highcharts rendering the same chart twice
- Highchart first category label is not wrapping
- Highcharts creating too many values in float
- Is there no way to turn off animation in Highcharts for multiple real-time curves?
- Is it possible to change linecolor for timeline chart in between specific points?
- Non-fixed svg height? My pie charts have different size even though svg width and pie size are identical. Svg height is fixed, how do i unfix it?
- Highstock: DataGrouping & Approximation (average) on timestamp values
- Creating a pie highchart from Data in local (OBJECT) JSON file
- How to customize each column in Highcharts stacked column
- Can I make a custom tooltip on a highcharts drilldown?
- Why am I seeing two different point types in Highcharts?
- Highcharts Date.UTC does not work properly for real data
- Highcharts addPoint function show nothing
- How to remove the stroke around the single points in a highcharts area. Highcharts
- style highmaps mapbubbles onclick
- negative axis values glitch the chart
- how to sync updates on several highchart graphs
- How to display only last data point on highcharts?
- Add a point with 20ms interval, is possible?
- How can I get a chart only with legends using highcharts
- Highcharts Gauge Chart display value at tickPositions:
- Highcharts bubble graph bubble getting cut off on top
- Changing bar width with pointPadding in Highcharts
- How can I highlight USA using Highcharts without highlighting Alaska?