We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
All 51 bubbles should be displayed without error.
The export server produces a corrupt SVG. When opening the file, following error is displayed:
error on line 44 at column 7087: Namespace prefix xlink for href on image is not defined
If I fix it by adding xmlns:xlink="http://www.w3.org/1999/xlink" to the svg tag, the image is displayed without an error. But no bubbles are shown.
xmlns:xlink="http://www.w3.org/1999/xlink"
svg
Base config structure used:
{ "chart": { "type": "bubble", "plotBorderWidth": 1, "zooming": { "type": "xy" } }, "title": { "text": "Highcharts Bubbles Sizing" }, "subtitle": { "text": "Smallest and largest bubbles are equal, intermediate bubbles different." }, "xAxis": { "gridLineWidth": 1 }, "yAxis": { "startOnTick": false, "endOnTick": false }, "series": [ { "data": [ [ 5, 5, 5 ] ], "sizeBy": "area", "name": "Size by area" }, ] }
Command used:
highcharts-export-server --logToFile false --allowCodeExecution -nologo true -type=svg -outfile /tmp/out.svg -infile /tmp/in.json --logLevel 4
not_working.json working.json
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Expected behaviour
All 51 bubbles should be displayed without error.
Actual behaviour
The export server produces a corrupt SVG. When opening the file, following error is displayed:
If I fix it by adding
xmlns:xlink="http://www.w3.org/1999/xlink"
to thesvg
tag, the image is displayed without an error. But no bubbles are shown.Additional info
Base config structure used:
Command used:
Files used
not_working.json



working.json
The text was updated successfully, but these errors were encountered: