I am trying to add images to the chart title using Highcharts.The image does not display. There is no script error. I also doubt whether highcharts support images in the header or not. Any help would be appreciated. Thank you in advance.
Here is the script for reference: http://jsfiddle.net/LHSey/123/
chart.setTitle({ text: "Testing" + " " + "../images/appendImage.png " }, { text: "This is a test" });
You need to install useHTMLin trueand paste your HTML image:
useHTML
true
chart.setTitle({ useHTML: true, text: "Testing" + " " + "<img src='../images/appendImage.png' alt='' />" }, { text: "This is a test" });
Working violin .
Source: https://habr.com/ru/post/1570280/More articles:Cordova CSP and GCM (does not work because the online method uses eval in Cordoba) - javascriptOpencv laser line recognition - opencvbandpass FIR filter - c ++SHA256 gives 44 output lengths instead of 64 lengths - c #how can I insert a frame at a specific index into a video using ffmpeg or opencv - javaJump physics ball in java, gravity - javaonclick on link should open unclosed tabs - javascriptC # - Services, how to set initial parameters - windowsManaging Connections Deploying the Azure Cloud Service - azureDo I need to write my own proxy processing code for OkHttp on Android? - androidAll Articles